Added SHA for Haskell.

svn path=/nixpkgs/trunk/; revision=16335
This commit is contained in:
Andres Löh 2009-07-13 11:36:50 +00:00
parent 1bc6e5c847
commit 66b32c4b66
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{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";
};
})

View file

@ -312,6 +312,10 @@ rec {
inherit (pkgs) SDL;
};
SHA = import ../development/libraries/haskell/SHA {
inherit cabal binary;
};
Shellac = import ../development/libraries/haskell/Shellac/Shellac.nix {
inherit cabal mtl;
};