haskell-cryptocipher: update to version 0.6.0

This commit is contained in:
Peter Simons 2013-09-04 13:04:19 +02:00
parent 89d707aee4
commit 209791d6b1

View File

@ -1,20 +1,14 @@
{ cabal, cereal, cipherAes, cipherRc4, cpu, cryptoApi, cryptohash { cabal, cipherAes, cipherBlowfish, cipherCamellia, cipherDes
, entropy, primitive, QuickCheck, testFramework , cipherRc4, cryptoCipherTypes
, testFrameworkQuickcheck2, vector
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "cryptocipher"; pname = "cryptocipher";
version = "0.5.2"; version = "0.6.0";
sha256 = "0ffd3w2hvi1zbhgk0xvgbnlfzzwijbrs5b9b4g2vc5p69wkv24zr"; sha256 = "1jgwn1j7h5rhg872ghmz54phxn7nlwmk83qv1cbnbww1l2ay8gz5";
isLibrary = true;
isExecutable = true;
buildDepends = [ buildDepends = [
cereal cipherAes cipherRc4 cpu cryptoApi primitive vector cipherAes cipherBlowfish cipherCamellia cipherDes cipherRc4
]; cryptoCipherTypes
testDepends = [
cryptoApi cryptohash entropy QuickCheck testFramework
testFrameworkQuickcheck2 vector
]; ];
meta = { meta = {
homepage = "http://github.com/vincenthz/hs-crypto-cipher"; homepage = "http://github.com/vincenthz/hs-crypto-cipher";