nixpkgs/pkgs/development/libraries/haskell/RSA/default.nix
Andres Löh fd258d6fe1 Added complete yesod.
Some downgrades were necessary.

svn path=/nixpkgs/trunk/; revision=28364
2011-08-07 22:51:22 +00:00

15 lines
487 B
Nix

{cabal, SHA, binary, pureMD5} :
cabal.mkDerivation (self : {
pname = "RSA";
version = "1.0.6.1";
sha256 = "1d0birzvapcsgay0wwh5v9mcd77sghj1bps9ws04ww9ga97gyp0l";
propagatedBuildInputs = [ SHA binary pureMD5 ];
meta = {
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})