2012-04-19 13:16:36 +02:00
|
|
|
{ cabal, binary, cryptoApi, 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-19 13:16:36 +02:00
|
|
|
version = "1.2.0.0";
|
|
|
|
sha256 = "0x4wa0yq4k43ccdakqcmy0mxvdlvrkfg6kc1j2hv7hh8b4vjisms";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-04-19 13:16:36 +02:00
|
|
|
buildDepends = [ binary cryptoApi 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
|
|
|
};
|
|
|
|
})
|