nixpkgs/pkgs/development/libraries/haskell/RSA/default.nix

23 lines
759 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-11-23 21:05:44 +01:00
{ cabal, binary, cryptoApi, cryptoPubkeyTypes, DRBG, pureMD5
, QuickCheck, SHA, tagged, testFramework, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "RSA";
2014-11-23 21:05:44 +01:00
version = "2.1.0";
sha256 = "0bhnnz7vp1942ac2vg0y6vsag9bm0pslnm4ix6lmw28hy6d1jk2a";
buildDepends = [ binary cryptoApi cryptoPubkeyTypes pureMD5 SHA ];
2013-12-24 17:27:45 +01:00
testDepends = [
binary cryptoApi cryptoPubkeyTypes DRBG pureMD5 QuickCheck SHA
tagged testFramework testFrameworkQuickcheck2
];
doCheck = false;
meta = {
2013-10-16 17:09:26 +02:00
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})