From 12f6308a0160520c7f9fa9ae5ff4ab8fcbd6c3a2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 24 Apr 2013 13:16:44 +0200 Subject: [PATCH] haskell-crypto-conduit: jailbreak to fix build with recent version of crypto-api --- pkgs/development/libraries/haskell/crypto-conduit/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/crypto-conduit/default.nix b/pkgs/development/libraries/haskell/crypto-conduit/default.nix index eca7e52fe90..6dcd25e761e 100644 --- a/pkgs/development/libraries/haskell/crypto-conduit/default.nix +++ b/pkgs/development/libraries/haskell/crypto-conduit/default.nix @@ -12,6 +12,9 @@ cabal.mkDerivation (self: { skein transformers ]; doCheck = false; + patchPhase = '' + sed -i -e 's|crypto-api >= 0.9 && < 0.12|crypto-api >= 0.9|' crypto-conduit.cabal + ''; meta = { homepage = "https://github.com/meteficha/crypto-conduit"; description = "Conduit interface for cryptographic operations (from crypto-api)";