nixpkgs/pkgs/development/libraries/haskell/RSA/default.nix
Peter Simons eec2c680c7 Updated Haskell packages.
- HsOpenSSL: updated to version 0.10.3
 - RSA: downgraded to version 1.0.6.3
 - language-javascript: updated to version 0.5.1
 - maude: fixed build
 - pem: added version 0.1.0

svn path=/nixpkgs/trunk/; revision=33811
2012-04-17 13:56:27 +00:00

17 lines
517 B
Nix

{ cabal, binary, pureMD5, random, SHA }:
cabal.mkDerivation (self: {
pname = "RSA";
version = "1.0.6.3";
sha256 = "0lk3nsh6nvacv1xzrg2pxxhd5gglmy40dkb8a47c9r9px0q6yjpj";
isLibrary = true;
isExecutable = true;
buildDepends = [ binary pureMD5 random SHA ];
meta = {
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})