From e1b52f54e3c9359765c159cc6d606261b8e90d74 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 10 May 2014 13:59:21 +0200 Subject: [PATCH] haskell-hakyll: jailbreak to allow building with network 2.5.x https://github.com/jaspervdj/hakyll/issues/255 --- pkgs/development/libraries/haskell/hakyll/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/hakyll/default.nix b/pkgs/development/libraries/haskell/hakyll/default.nix index 5e40bb851f08..e0168e4f12c1 100644 --- a/pkgs/development/libraries/haskell/hakyll/default.nix +++ b/pkgs/development/libraries/haskell/hakyll/default.nix @@ -26,6 +26,9 @@ cabal.mkDerivation (self: { testFrameworkHunit testFrameworkQuickcheck2 text time ]; doCheck = false; + patchPhase = '' + sed -i -e 's|network .*,|network,|' hakyll.cabal + ''; meta = { homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library";