From 6e819600e0d6a87ed7cf7ec57f62903343191419 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 1 Nov 2014 19:35:30 +0100 Subject: [PATCH] haskell-filestore: disable the test suite to fix build It depends on external utilities, like Mercurial. --- pkgs/development/libraries/haskell/filestore/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/filestore/default.nix b/pkgs/development/libraries/haskell/filestore/default.nix index 990ba69c59a..1fa820a2c5a 100644 --- a/pkgs/development/libraries/haskell/filestore/default.nix +++ b/pkgs/development/libraries/haskell/filestore/default.nix @@ -11,6 +11,7 @@ cabal.mkDerivation (self: { buildDepends = [ Diff filepath parsec split time utf8String xml ]; testDepends = [ Diff filepath HUnit mtl time ]; jailbreak = true; + doCheck = false; meta = { description = "Interface for versioning file stores"; license = self.stdenv.lib.licenses.bsd3;