b18dd91057
svn path=/nixpkgs/trunk/; revision=26570
13 lines
302 B
Nix
13 lines
302 B
Nix
{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";
|
|
};
|
|
})
|
|
|