cabal2nix-2.8.2: test/golden-test-cases/data-serializer.nix.golden
{ mkDerivation, base, binary, bytestring, cereal, data-endian
, fetchurl, parsers, semigroups, split, tasty, tasty-quickcheck
}:
mkDerivation {
pname = "data-serializer";
version = "0.3.2";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
libraryHaskellDepends = [
base binary bytestring cereal data-endian parsers semigroups split
];
testHaskellDepends = [
base binary bytestring cereal tasty tasty-quickcheck
];
homepage = "https://github.com/mvv/data-serializer";
description = "Common API for serialization libraries";
license = stdenv.lib.licenses.bsd3;
}