From 39746cb02d4657d896f7ec9b420082baaf9d720e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 16 Jan 2015 10:08:16 +0100 Subject: [PATCH] haskell-ChasingBottems: fix build with GHC 7.6.x --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index 78ee237fd8d..d1c919a03dc 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -46,4 +46,7 @@ self: super: { # Needs Cabal >= 1.18.x. jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_6; }; + # Haddock chokes on the prologue from the cabal file. + ChasingBottoms = dontHaddock super.ChasingBottoms; + }