summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2012-01-28 15:34:53 +0000
committerAndres Löh <mail@andres-loeh.de>2012-01-28 15:34:53 +0000
commita819ccf0305c267ab86e99c146451bf4db289da5 (patch)
tree4350023f9143807fbd4327cc26da29e83540ae2e /pkgs/development
parent71c28d0e336ea3d5582d1e889b1adca4db00ab54 (diff)
downloadnixlib-a819ccf0305c267ab86e99c146451bf4db289da5.tar
nixlib-a819ccf0305c267ab86e99c146451bf4db289da5.tar.gz
nixlib-a819ccf0305c267ab86e99c146451bf4db289da5.tar.bz2
nixlib-a819ccf0305c267ab86e99c146451bf4db289da5.tar.lz
nixlib-a819ccf0305c267ab86e99c146451bf4db289da5.tar.xz
nixlib-a819ccf0305c267ab86e99c146451bf4db289da5.tar.zst
nixlib-a819ccf0305c267ab86e99c146451bf4db289da5.zip
Updated GHC snapshot to ghc-7.4.1-rc2.
svn path=/nixpkgs/trunk/; revision=31910
Diffstat (limited to 'pkgs/development')
-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 0d3301df60a3..0a08cc3a4e70 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -1,13 +1,13 @@
 {stdenv, fetchurl, ghc, perl, gmp, ncurses, darwinInstallNameToolUtility}:
 
 stdenv.mkDerivation rec {
-  version = "7.4.0.20111219";
+  version = "7.4.0.20120126";
 
   name = "ghc-${version}";
 
   src = fetchurl {
-    url = "http://haskell.org/ghc/dist/7.4.1-rc1/${name}-src.tar.bz2";
-    sha256 = "11imfag07wr9s5vf12yh6bz4hjfbw20i1c7n8py9fa4vx7va676n";
+    url = "http://haskell.org/ghc/dist/7.4.1-rc2/${name}-src.tar.bz2";
+    sha256 = "0arnvzhwjzk2z3m2891b4z13p4v1c84f31jgyj13a1fbfpylgs64";
   };
 
   buildInputs = [ghc perl gmp ncurses] ++