From 38f7236607a4827af2e3dcde65c37a158dcd5a06 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 8 Aug 2014 21:57:24 +0200 Subject: [PATCH] haskell-CouchDB: jailbreak to fix build with recent versions of utf8-string https://github.com/arjunguha/haskell-couchdb/issues/14 --- pkgs/development/libraries/haskell/CouchDB/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/CouchDB/default.nix b/pkgs/development/libraries/haskell/CouchDB/default.nix index a7035aa7033..4dac140d122 100644 --- a/pkgs/development/libraries/haskell/CouchDB/default.nix +++ b/pkgs/development/libraries/haskell/CouchDB/default.nix @@ -9,6 +9,7 @@ cabal.mkDerivation (self: { buildDepends = [ HTTP json mtl network utf8String ]; testDepends = [ HTTP HUnit json mtl network utf8String ]; doCheck = false; + jailbreak = true; meta = { homepage = "http://github.com/arjunguha/haskell-couchdb/"; description = "CouchDB interface";