From 99fba9e33556aa3d8f135a094c49d9da1332061e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 9 Mar 2018 19:46:53 +0100 Subject: [PATCH] haskell-HTTP and haddock-library: add overrides for ghc 8.4.1 Cc: @deepfire --- .../haskell-modules/configuration-ghc-8.4.x.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix index f2b3185a993..74d1121e701 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix @@ -764,4 +764,11 @@ self: super: { jailbreak = true; }); + # https://github.com/haskell/HTTP/pull/114 + HTTP = doJailbreak super.HTTP; + + # Older versions don't compile. + haddock-library = self.haddock-library_1_5_0_1; + haddock-library_1_5_0_1 = dontHaddock (dontCheck super.haddock-library_1_5_0_1); + }