From 63482fc9b4db40385ae9f3c9eaf166509f24b152 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 25 Jan 2014 18:52:13 +0100 Subject: [PATCH] haskell-blaze-html: jailbreak to fix test suite build --- pkgs/development/libraries/haskell/blaze-html/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/haskell/blaze-html/default.nix b/pkgs/development/libraries/haskell/blaze-html/default.nix index ee1b686493c..bec48f8e44f 100644 --- a/pkgs/development/libraries/haskell/blaze-html/default.nix +++ b/pkgs/development/libraries/haskell/blaze-html/default.nix @@ -11,6 +11,9 @@ cabal.mkDerivation (self: { blazeBuilder blazeMarkup HUnit QuickCheck testFramework testFrameworkHunit testFrameworkQuickcheck2 text ]; + patchPhase = '' + sed -i -e 's|blaze-markup.*>=.*,|blaze-markup,|' blaze-html.cabal + ''; meta = { homepage = "http://jaspervdj.be/blaze"; description = "A blazingly fast HTML combinator library for Haskell";