nixpkgs/pkgs/development/libraries/haskell/SHA/default.nix
Andres Löh 66b32c4b66 Added SHA for Haskell.
svn path=/nixpkgs/trunk/; revision=16335
2009-07-13 11:36:50 +00:00

13 lines
304 B
Nix

{cabal, binary}:
cabal.mkDerivation (self : {
pname = "SHA";
version = "1.4.0";
sha256 = "7f08042fddadd8e3795d627a042d1884b33e066ab67d03b6de92551a4ad9fc7d";
propagatedBuildInputs = [binary];
meta = {
description = "Implementations of the SHA suite of message digest functions";
};
})