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

View File

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