cabal2nix-2.16.0: test/golden-test-cases/binary-bits.nix.golden
{ mkDerivation, base, binary, bytestring, lib, QuickCheck, random
, test-framework, test-framework-quickcheck2
}:
mkDerivation {
pname = "binary-bits";
version = "0.5";
sha256 = "deadbeef";
libraryHaskellDepends = [ base binary bytestring ];
testHaskellDepends = [
base binary bytestring QuickCheck random test-framework
test-framework-quickcheck2
];
description = "Bit parsing/writing on top of binary";
license = lib.licenses.bsd3;
}