packages feed

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

{ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512
, lib, libxcrypt, 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
  ];
  testSystemDepends = [ libxcrypt ];
  homepage = "https://github.com/phadej/crypt-sha512";
  description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm";
  license = lib.licenses.bsd3;
}