about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEric Wolf <1983821+typetetris@users.noreply.github.com>2018-08-15 15:53:20 +0200
committerDomen Kožar <domen@enlambda.com>2018-08-15 14:53:20 +0100
commitfe6ebf85b760813d43f6fc4b9447c110eefd340f (patch)
tree42810496b3e377872ff0b3c0ff0cbf18d0dd3a60
parent3116e6e6b93aa486adab31f8e6f2e8d3420d1f34 (diff)
downloadnixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.tar
nixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.tar.gz
nixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.tar.bz2
nixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.tar.lz
nixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.tar.xz
nixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.tar.zst
nixlib-fe6ebf85b760813d43f6fc4b9447c110eefd340f.zip
ghc-8.0.2: Fix #44987 (#45014)
nix-env -f '<nixpkgs>' -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
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix1
1 files changed, 1 insertions, 0 deletions
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;