eec2c680c7
- 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
16 lines
517 B
Nix
16 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 ];
|
|
};
|
|
})
|