haskell-tls: update to version 1.2.2

This commit is contained in:
Peter Simons 2014-01-29 11:45:07 +01:00
parent 5ea2be7a2a
commit 4c14da1276

@ -1,18 +1,23 @@
{ cabal, cereal, certificate, cprngAes, cryptohash, cryptoPubkey
, cryptoRandom, mtl, network, QuickCheck, testFramework
, testFrameworkQuickcheck2, time
{ cabal, asn1Encoding, asn1Types, cereal, cipherAes, cipherRc4
, cprngAes, cryptohash, cryptoNumbers, cryptoPubkey
, cryptoPubkeyTypes, cryptoRandom, dataDefaultClass, mtl, network
, QuickCheck, testFramework, testFrameworkQuickcheck2, time, x509
, x509Store, x509Validation
}:
cabal.mkDerivation (self: {
pname = "tls";
version = "1.1.5";
sha256 = "1ja03x3i7dgjpy22h4shnni1xslph8i8q4accqq8njpqpz54c84c";
version = "1.2.2";
sha256 = "156l859mfpdax5rg1frwa5ms5bzggaja0mi795hh8i5c3ah7hfcp";
buildDepends = [
cereal certificate cryptohash cryptoPubkey cryptoRandom mtl network
asn1Encoding asn1Types cereal cipherAes cipherRc4 cryptohash
cryptoNumbers cryptoPubkey cryptoPubkeyTypes cryptoRandom
dataDefaultClass mtl network x509 x509Store x509Validation
];
testDepends = [
cereal certificate cprngAes cryptoPubkey cryptoRandom mtl
QuickCheck testFramework testFrameworkQuickcheck2 time
cereal cprngAes cryptoPubkey cryptoRandom dataDefaultClass mtl
QuickCheck testFramework testFrameworkQuickcheck2 time x509
x509Validation
];
doCheck = false;
meta = {