From 86bfcc89b8e8e2346157fbc4430d3ddc94701241 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 10 Mar 2018 13:12:19 +0100 Subject: [PATCH] haskell-HTTP: use the latest version when compiling with GHC 8.4.x --- pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 84cf5ac6d72..32cecf134f9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix @@ -765,7 +765,8 @@ self: super: { }); # https://github.com/haskell/HTTP/pull/114 - HTTP = doJailbreak super.HTTP; + HTTP = self.HTTP_4000_3_10; + HTTP_4000_3_10 = dontCheck super.HTTP_4000_3_10; # Older versions don't compile. haddock-library = self.haddock-library_1_5_0_1;