haskell-RSA: update to version 2.0

This commit is contained in:
Peter Simons 2013-12-24 17:27:45 +01:00
parent 2ffab7ba6a
commit fa7e494b25

View File

@ -1,16 +1,19 @@
{ cabal, binary, cryptoApi, cryptoPubkeyTypes, monadcryptorandom { cabal, binary, cryptoApi, cryptoPubkeyTypes, DRBG
, pureMD5, SHA , monadcryptorandom, pureMD5, QuickCheck, SHA, tagged
, testFramework, testFrameworkQuickcheck2
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "RSA"; pname = "RSA";
version = "1.2.2.0"; version = "2.0";
sha256 = "0x4an1060slppyccf18isqrdl548ll33xzzqch3qxg285a0mm12m"; sha256 = "170bjcqd6q8q0c0idjpm9vgn02ifwxz1xvwp1l30qdf56293p4bq";
isLibrary = true;
isExecutable = true;
buildDepends = [ buildDepends = [
binary cryptoApi cryptoPubkeyTypes monadcryptorandom pureMD5 SHA binary cryptoApi cryptoPubkeyTypes monadcryptorandom pureMD5 SHA
]; ];
testDepends = [
binary cryptoApi cryptoPubkeyTypes DRBG pureMD5 QuickCheck SHA
tagged testFramework testFrameworkQuickcheck2
];
meta = { meta = {
description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1.";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;