about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2016-12-24 17:37:36 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2016-12-26 13:27:33 +0000
commitd906fb2c9a9c542752c029e2585beb4dc8629292 (patch)
tree06dee52cf45fd690390fa7ba24411d6d47f766d0 /pkgs/development/compilers/ghc
parent0cd5ebb48fd89c94117e897239a638972181a8e8 (diff)
downloadnixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.tar
nixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.tar.gz
nixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.tar.bz2
nixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.tar.lz
nixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.tar.xz
nixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.tar.zst
nixlib-d906fb2c9a9c542752c029e2585beb4dc8629292.zip
Bump ghcHEAD to latest commit
Diffstat (limited to 'pkgs/development/compilers/ghc')
-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 8cecb4d605b5..0deabd0fa98d 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -7,7 +7,7 @@ let
 
   commonBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
 
-  version = "8.1.20161115";
+  version = "8.1.20161224";
 
   commonPreConfigure =  ''
     sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
@@ -19,12 +19,12 @@ let
 in stdenv.mkDerivation (rec {
   inherit version;
   name = "ghc-${version}";
-  rev = "017d11e0a36866b05ace32ece1af11adf652a619";
+  rev = "2689a1692636521777f007861a484e7064b2d696";
 
   src = fetchgit {
     url = "git://git.haskell.org/ghc.git";
     inherit rev;
-    sha256 = "1ryggmz961qd0fl50rkjjvi6g9azwla2vx9310a9nzjaj5x6ib4y";
+    sha256 = "0rk6xy7kgxx849nprq1ji459p88nyy93236g841m5p6mdh7mmrcr";
   };
 
   postPatch = ''