cabal2nix-2.9.3: test/golden-test-cases/pinch.nix.golden
{ mkDerivation, array, base, bytestring, containers, deepseq
, ghc-prim, hashable, hspec, hspec-discover, QuickCheck, stdenv
, text, unordered-containers, vector
}:
mkDerivation {
pname = "pinch";
version = "0.3.2.0";
sha256 = "deadbeef";
libraryHaskellDepends = [
array base bytestring containers deepseq ghc-prim hashable text
unordered-containers vector
];
testHaskellDepends = [
base bytestring containers hspec hspec-discover QuickCheck text
unordered-containers vector
];
homepage = "https://github.com/abhinav/pinch#readme";
description = "An alternative implementation of Thrift for Haskell";
license = stdenv.lib.licenses.bsd3;
}