From fe6ebf85b760813d43f6fc4b9447c110eefd340f Mon Sep 17 00:00:00 2001 From: Eric Wolf <1983821+typetetris@users.noreply.github.com> Date: Wed, 15 Aug 2018 15:53:20 +0200 Subject: [PATCH] ghc-8.0.2: Fix #44987 (#45014) nix-env -f '' -qaP -A haskell.packages.ghc802 will run again, but the packages depending on ghc-compact will still not build, as they have a constrain on base >= 4.10 and ghc 8.0.2 has base 4.9.1.0 --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 1a4638c51e15..f475512a8dab 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -19,6 +19,7 @@ self: super: { filepath = null; ghc-boot = null; ghc-boot-th = null; + ghc-compact = null; ghc-prim = null; ghci = null; haskeline = null;