cabal2nix-2.9: test/golden-test-cases/SHA.nix.golden
{ mkDerivation, array, base, binary, bytestring, fetchurl
, QuickCheck, test-framework, test-framework-quickcheck2
}:
mkDerivation {
pname = "SHA";
version = "1.6.4.2";
src = fetchurl {
url = "http://example.org/";
sha256 = "abc";
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ array base binary bytestring ];
testHaskellDepends = [
array base binary bytestring QuickCheck test-framework
test-framework-quickcheck2
];
description = "Implementations of the SHA suite of message digest functions";
license = stdenv.lib.licenses.bsd3;
}