packages feed

cabal2nix-2.16.0: test/golden-test-cases/crypt-sha512.nix.golden

{ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512
, lib, quickcheck-instances, tasty, tasty-hunit, tasty-quickcheck
}:
mkDerivation {
  pname = "crypt-sha512";
  version = "0";
  sha256 = "deadbeef";
  libraryHaskellDepends = [
    attoparsec base bytestring cryptohash-sha512
  ];
  testHaskellDepends = [
    base bytestring quickcheck-instances tasty tasty-hunit
    tasty-quickcheck
  ];
  homepage = "https://github.com/phadej/crypt-sha512";
  description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm";
  license = lib.licenses.bsd3;
}