about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-01-25 18:52:13 +0100
committerPeter Simons <simons@cryp.to>2014-01-26 00:02:35 +0100
commit63482fc9b4db40385ae9f3c9eaf166509f24b152 (patch)
tree7f7ab63a7ef2d1193b78e03e2a8ea0aabbaafac6
parent887ba81084aa714d0dd008e0b036f3aff7f1e4f6 (diff)
haskell-blaze-html: jailbreak to fix test suite build
-rw-r--r--pkgs/development/libraries/haskell/blaze-html/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/blaze-html/default.nix b/pkgs/development/libraries/haskell/blaze-html/default.nix
index ee1b686493ca1..bec48f8e44f74 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";