cabal2nix-2.9.3: test/golden-test-cases/messagepack.nix.golden
{ mkDerivation, base, bytestring, cereal, containers, deepseq
, QuickCheck, stdenv, test-framework, test-framework-quickcheck2
, test-framework-th
}:
mkDerivation {
pname = "messagepack";
version = "0.5.4";
sha256 = "deadbeef";
libraryHaskellDepends = [
base bytestring cereal containers deepseq
];
testHaskellDepends = [
base bytestring cereal containers QuickCheck test-framework
test-framework-quickcheck2 test-framework-th
];
homepage = "https://github.com/rodrigosetti/messagepack";
description = "Serialize instance for Message Pack Object";
license = stdenv.lib.licenses.mit;
}