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

29 lines
912 B
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2013-12-24 16:27:45 +00:00
{ cabal, binary, cryptoApi, cryptoPubkeyTypes, DRBG
, monadcryptorandom, pureMD5, QuickCheck, SHA, tagged
, testFramework, testFrameworkQuickcheck2
}:
cabal.mkDerivation (self: {
pname = "RSA";
2014-07-07 09:21:05 +00:00
version = "2.0.0";
sha256 = "1v2d6sxpqr0lmiqdr3ym5qzp3p1y57yj6939vdlsac6k6ifj6pwq";
isLibrary = true;
isExecutable = true;
buildDepends = [
2014-07-07 09:21:05 +00:00
binary cryptoApi cryptoPubkeyTypes DRBG monadcryptorandom pureMD5
QuickCheck SHA tagged testFramework testFrameworkQuickcheck2
];
2013-12-24 16:27:45 +00:00
testDepends = [
binary cryptoApi cryptoPubkeyTypes DRBG pureMD5 QuickCheck SHA
tagged testFramework testFrameworkQuickcheck2
];
doCheck = false;
meta = {
2013-10-16 15:09:26 +00: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;
};
})