From f162a1349aef85c1789855ce4a55783a54e2b47c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 21 Jul 2016 17:57:28 +0200 Subject: [PATCH] haskell-bifunctors: 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 6618e3126db..c83511dbc10 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -99,4 +99,7 @@ self: super: { # Needs additional inputs on pre 7.10.x compilers. semigroups = addBuildDepends super.semigroups (with self; [bytestring-builder nats tagged unordered-containers transformers]); + # Haddock doesn't cope with the new markup. + bifunctors = dontHaddock super.bifunctors; + }