haskell-tls: update to version 1.2.8.nix

This commit is contained in:
Peter Simons 2014-05-23 16:01:17 +02:00
parent 0259eaf66c
commit 363b35ac2c
2 changed files with 12 additions and 12 deletions

View file

@ -1,19 +1,19 @@
{ cabal, asn1Encoding, asn1Types, byteable, cereal, cipherAes { cabal, asn1Encoding, asn1Types, byteable, cereal, cipherAes
, cipherRc4, cprngAes, cryptohash, cryptoNumbers, cryptoPubkey , cipherDes, cipherRc4, cprngAes, cryptoCipherTypes, cryptohash
, cryptoPubkeyTypes, cryptoRandom, dataDefaultClass, mtl, network , cryptoNumbers, cryptoPubkey, cryptoPubkeyTypes, cryptoRandom
, QuickCheck, testFramework, testFrameworkQuickcheck2, time, x509 , dataDefaultClass, mtl, network, QuickCheck, testFramework
, x509Store, x509Validation , testFrameworkQuickcheck2, time, x509, x509Store, x509Validation
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "tls"; pname = "tls";
version = "1.2.7"; version = "1.2.8";
sha256 = "0f0zlyiw6bgqkhg0czlpqyz8jgb1zbgbpzpk73v5p7hsjffsblgs"; sha256 = "0fm36jn2yri3fn6wadl5v4k0cpnansqlid4fhavgnp6mazf0q5ha";
buildDepends = [ buildDepends = [
asn1Encoding asn1Types byteable cereal cipherAes cipherRc4 asn1Encoding asn1Types byteable cereal cipherAes cipherDes
cryptohash cryptoNumbers cryptoPubkey cryptoPubkeyTypes cipherRc4 cryptoCipherTypes cryptohash cryptoNumbers cryptoPubkey
cryptoRandom dataDefaultClass mtl network x509 x509Store cryptoPubkeyTypes cryptoRandom dataDefaultClass mtl network x509
x509Validation x509Store x509Validation
]; ];
testDepends = [ testDepends = [
cereal cprngAes cryptoPubkey cryptoRandom dataDefaultClass mtl cereal cprngAes cryptoPubkey cryptoRandom dataDefaultClass mtl

View file

@ -2187,8 +2187,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
timeCompat = callPackage ../development/libraries/haskell/time-compat {}; timeCompat = callPackage ../development/libraries/haskell/time-compat {};
tls_1_1_5 = callPackage ../development/libraries/haskell/tls/1.1.5.nix {}; tls_1_1_5 = callPackage ../development/libraries/haskell/tls/1.1.5.nix {};
tls_1_2_7 = callPackage ../development/libraries/haskell/tls/1.2.7.nix {}; tls_1_2_8 = callPackage ../development/libraries/haskell/tls/1.2.8.nix {};
tls = self.tls_1_2_7; tls = self.tls_1_2_8;
tlsExtra = callPackage ../development/libraries/haskell/tls-extra { tlsExtra = callPackage ../development/libraries/haskell/tls-extra {
tls = self.tls_1_1_5; tls = self.tls_1_1_5;