From a412cdeb91fbb0862e343384679397a37fcf29da Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Wed, 29 Jan 2014 23:39:58 +0100 Subject: [PATCH] Disabled tests because a running CouchDB server is needed and they currently don't compile. The latter should be fixed with PR arjunguha/haskell-couchdb#13. --- pkgs/development/libraries/haskell/CouchDB/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/libraries/haskell/CouchDB/default.nix b/pkgs/development/libraries/haskell/CouchDB/default.nix index 4a413e2e7b8..d2e66c438e1 100644 --- a/pkgs/development/libraries/haskell/CouchDB/default.nix +++ b/pkgs/development/libraries/haskell/CouchDB/default.nix @@ -6,6 +6,10 @@ cabal.mkDerivation (self: { sha256 = "0a9g0iblfyqppcy1ni3ac8f3yv5km95bfblhwqlsk6khydi5ka98"; buildDepends = [ HTTP json mtl network utf8String ]; testDepends = [ HTTP HUnit json mtl network utf8String ]; + + # Disabled tests because a running CouchDB server is needed. + doCheck = false; + meta = { homepage = "http://github.com/arjunguha/haskell-couchdb/"; description = "CouchDB interface";