diff --git a/pkgs/development/libraries/haskell/tls/default.nix b/pkgs/development/libraries/haskell/tls/default.nix index fbd20bebdf1..29b6b11d791 100644 --- a/pkgs/development/libraries/haskell/tls/default.nix +++ b/pkgs/development/libraries/haskell/tls/default.nix @@ -1,17 +1,15 @@ -{ cabal, cereal, certificate, cryptoApi, cryptocipher, cryptohash -, mtl, network +{ cabal, cereal, certificate, cryptohash, cryptoPubkey +, cryptoRandomApi, mtl, network }: cabal.mkDerivation (self: { pname = "tls"; - version = "1.0.3"; - sha256 = "14wgwz032skkgkxg2lyh8kwg1fkapmlg2jh74czbacvnssc2iidb"; - isLibrary = true; - isExecutable = true; + version = "1.1.1"; + sha256 = "0ji83b5z3v6f6a6rgyj5xkjh9vvsqckr7ymzjnhb4zqf0mgymypq"; buildDepends = [ - cereal certificate cryptoApi cryptocipher cryptohash mtl network + cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl + network ]; - jailbreak = true; meta = { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS/SSL protocol native implementation (Server and Client)";