From c63096c9a9128f65690a36a37151b549af8c3b8c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 4 Jun 2012 09:46:16 +0000 Subject: [PATCH] haskell-filestore: disable Haddock phase to fix build with GHC 7.0.4 svn path=/nixpkgs/trunk/; revision=34340 --- 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 ac891fa8bd6..355c6ef876c 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 HUnit mtl parsec split time utf8String xml ]; + noHaddock = true; meta = { description = "Interface for versioning file stores"; license = self.stdenv.lib.licenses.bsd3;