From aaf62f7f6eb8c620cf538b40880e29a9695e33c5 Mon Sep 17 00:00:00 2001 From: Julien Langlois Date: Mon, 25 Dec 2017 01:36:57 -0800 Subject: [PATCH] (haskell.packages.ghc802.ghc): (fix llvm dependency) Fix incorrect LLVM dependency of GHC 8.0.x to be 3.7 instead of 3.5. --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f625ad5f656c..30ecbe92f16c 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -5,7 +5,7 @@ with haskellLib; self: super: { # Suitable LLVM version. - llvmPackages = pkgs.llvmPackages_35; + llvmPackages = pkgs.llvmPackages_37; # Disable GHC 8.0.x core libraries. array = null;