packages feed

cabal2nix-2.16.0: test/golden-test-cases/SHA.nix.golden

{ mkDerivation, array, base, binary, bytestring, lib, QuickCheck
, test-framework, test-framework-quickcheck2
}:
mkDerivation {
  pname = "SHA";
  version = "1.6.4.2";
  sha256 = "deadbeef";
  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 = lib.licenses.bsd3;
}