From 440140e8592b30a296ff6a04eacb803ac4c1e45e Mon Sep 17 00:00:00 2001 From: "Daniel P. Wright" Date: Thu, 29 Aug 2013 11:56:13 +0900 Subject: [PATCH] Explicitly set higher tls/tls-extra dependencies Hackage is reporting a build failure relating to cryptocipher, a library which is no longer required with newer versions of tls/tls-extra. Explicitly setting these library dependencies to the version I have installed locally in order to try and resolve the build failure. --- HaskellNet-SSL.cabal | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HaskellNet-SSL.cabal b/HaskellNet-SSL.cabal index 93dbaa0..6148493 100644 --- a/HaskellNet-SSL.cabal +++ b/HaskellNet-SSL.cabal @@ -1,6 +1,6 @@ name: HaskellNet-SSL synopsis: Helpers to connect to SSL/TLS mail servers with HaskellNet -version: 0.1.1.0 +version: 0.1.1.1 description: This package ties together the HaskellNet and connection packages to make it easy to open IMAP and SMTP connections over SSL. @@ -28,6 +28,8 @@ library other-modules: Network.HaskellNet.SSL build-depends: base >= 4 && < 5, HaskellNet >= 0.3.1, + tls >= 1.1.2, + tls-extra >= 0.6.1, connection >= 0.1.3, network >= 2.3, bytestring,