2012-04-25 12:12:44 +02:00
|
|
|
{ cabal, binary, cryptoApi, cryptoPubkeyTypes, monadcryptorandom
|
|
|
|
, pureMD5, SHA
|
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "RSA";
|
2012-04-25 12:12:44 +02:00
|
|
|
version = "1.2.1.0";
|
|
|
|
sha256 = "14x53xjy4rqdgin6kyrm2b16hb0k599gfiwiwrsyri9mx3f3s1ca";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-04-25 12:12:44 +02:00
|
|
|
buildDepends = [
|
|
|
|
binary cryptoApi cryptoPubkeyTypes monadcryptorandom pureMD5 SHA
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|