summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/digest/default.nix
blob: ce9a4edc02718447ee753b8f33c3f41380761005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{cabal, zlib}:

cabal.mkDerivation (self : {
  pname = "digest";
  version = "0.0.0.9";
  sha256 = "15gj3iq3jm4lnkc6hnj9v8p8ia3yzbsajwf9by3b1kpl449k2h29";
  propagatedBuildInputs = [zlib];
  meta = {
    description = "Various cryptographic hashes for bytestrings: CRC32 and Adler32 for now";
  };
})