From 8abcedd90e22269e865dc03c657aaa54cb1aaf89 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 5 Dec 2017 10:18:17 +0100 Subject: [PATCH] haskell-utf8-string: fix build with ghc 7.4.x --- pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 4b6baed49737..73bc28b4dd34 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix @@ -111,4 +111,7 @@ self: super: { network_2_6_3_1 = dontCheck super.network_2_6_3_1; network = self.network_2_6_3_1; + # Haddock fails with an internal error. + utf8-string = dontHaddock super.utf8-string; + }