summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-12-09 19:27:04 +0100
committerGitHub <noreply@github.com>2017-12-09 19:27:04 +0100
commit73d85455e4d6f1208e2538b2707658a69bab609b (patch)
treec0d1bd3ace6b0e451f65c7468f68ae7a38a1eff6 /pkgs/development/compilers
parent332a800de3f203d509349847dde540d171f163de (diff)
parente7a327da5cffdf5e77e1924906a4f0983591bd3e (diff)
downloadnixlib-73d85455e4d6f1208e2538b2707658a69bab609b.tar
nixlib-73d85455e4d6f1208e2538b2707658a69bab609b.tar.gz
nixlib-73d85455e4d6f1208e2538b2707658a69bab609b.tar.bz2
nixlib-73d85455e4d6f1208e2538b2707658a69bab609b.tar.lz
nixlib-73d85455e4d6f1208e2538b2707658a69bab609b.tar.xz
nixlib-73d85455e4d6f1208e2538b2707658a69bab609b.tar.zst
nixlib-73d85455e4d6f1208e2538b2707658a69bab609b.zip
Merge pull request #32503 from mpickering/ghc-head-updates-8.5
ghcHEAD: 8.3.20170808 -> 8.5.20171209
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/ghc/head.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix
index 92ba3f6a46ed..3f5dfa65958f 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -5,7 +5,7 @@
   # If enabled GHC will be build with the GPL-free but slower integer-simple
   # library instead of the faster but GPLed integer-gmp library.
 , enableIntegerSimple ? false, gmp
-, version ? "8.3.20170808"
+, version ? "8.5.20171209"
 }:
 
 let
@@ -13,7 +13,7 @@ let
 
   commonBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
 
-  rev = "14457cf6a50f708eecece8f286f08687791d51f7";
+  rev = "4335c07ca7e64624819b22644d7591853826bd75";
 
   commonPreConfigure =  ''
     echo ${version} >VERSION
@@ -34,7 +34,7 @@ in stdenv.mkDerivation (rec {
   src = fetchgit {
     url = "git://git.haskell.org/ghc.git";
     inherit rev;
-    sha256 = "08vj9ca7rq7rv8pjfl14fg2lg9d6zisrwlq6bi5vzr006816dy8y";
+    sha256 = "19csad94sk0bw2nj97ppmnwh4c193jg0jmg5w2sx9rqm9ih4yg85";
   };
 
   postPatch = "patchShebangs .";