3
0
Fork 0
forked from mirrors/nixpkgs

haskell-tls: update to version 1.2.3

This commit is contained in:
Peter Simons 2014-03-22 10:32:03 +01:00
parent 70f6b1e506
commit 65e3713630
2 changed files with 10 additions and 9 deletions

View file

@ -1,5 +1,5 @@
{ cabal, asn1Encoding, asn1Types, cereal, cipherAes, cipherRc4
, cprngAes, cryptohash, cryptoNumbers, cryptoPubkey
{ cabal, asn1Encoding, asn1Types, byteable, cereal, cipherAes
, cipherRc4, cprngAes, cryptohash, cryptoNumbers, cryptoPubkey
, cryptoPubkeyTypes, cryptoRandom, dataDefaultClass, mtl, network
, QuickCheck, testFramework, testFrameworkQuickcheck2, time, x509
, x509Store, x509Validation
@ -7,12 +7,13 @@
cabal.mkDerivation (self: {
pname = "tls";
version = "1.2.2";
sha256 = "156l859mfpdax5rg1frwa5ms5bzggaja0mi795hh8i5c3ah7hfcp";
version = "1.2.3";
sha256 = "0vv81z5m223b90zzfp5dk376fh8yngyd8h9anrxjrqb4f3bycaxg";
buildDepends = [
asn1Encoding asn1Types cereal cipherAes cipherRc4 cryptohash
cryptoNumbers cryptoPubkey cryptoPubkeyTypes cryptoRandom
dataDefaultClass mtl network x509 x509Store x509Validation
asn1Encoding asn1Types byteable cereal cipherAes cipherRc4
cryptohash cryptoNumbers cryptoPubkey cryptoPubkeyTypes
cryptoRandom dataDefaultClass mtl network x509 x509Store
x509Validation
];
testDepends = [
cereal cprngAes cryptoPubkey cryptoRandom dataDefaultClass mtl

View file

@ -2479,8 +2479,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
timeCompat = callPackage ../development/libraries/haskell/time-compat {};
tls_1_1_5 = callPackage ../development/libraries/haskell/tls/1.1.5.nix {};
tls_1_2_2 = callPackage ../development/libraries/haskell/tls/1.2.2.nix {};
tls = self.tls_1_2_2;
tls_1_2_3 = callPackage ../development/libraries/haskell/tls/1.2.3.nix {};
tls = self.tls_1_2_3;
tlsExtra = callPackage ../development/libraries/haskell/tls-extra {
tls = self.tls_1_1_5;