about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorJulien Langlois <yourstruly@julienlanglois.me>2017-12-25 01:36:57 -0800
committerDomen Kožar <domen@enlambda.com>2017-12-25 23:45:19 +0000
commitaaf62f7f6eb8c620cf538b40880e29a9695e33c5 (patch)
treea11eff3b2089179ab5b8ed800d26795fb8799555 /pkgs/development/haskell-modules
parentdc4c6027a2adb4e450dc08bb9bf227075cb33d2d (diff)
downloadnixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.tar
nixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.tar.gz
nixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.tar.bz2
nixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.tar.lz
nixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.tar.xz
nixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.tar.zst
nixlib-aaf62f7f6eb8c620cf538b40880e29a9695e33c5.zip
(haskell.packages.ghc802.ghc): (fix llvm dependency)
Fix incorrect LLVM dependency of GHC 8.0.x to be 3.7 instead of 3.5.
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix2
1 files changed, 1 insertions, 1 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 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;