summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2012-05-16 12:00:05 +0000
committerAndres Löh <mail@andres-loeh.de>2012-05-16 12:00:05 +0000
commite5e24322778c041ca9eac9f8850dcc9dbffd2305 (patch)
treef1731d51a10bdb5e178b536b0d17ecb527b93027 /pkgs
parent9be7b3b4becaf2bdf9fe6ec502085d543279d4a1 (diff)
downloadnixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.tar
nixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.tar.gz
nixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.tar.bz2
nixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.tar.lz
nixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.tar.xz
nixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.tar.zst
nixpkgs-e5e24322778c041ca9eac9f8850dcc9dbffd2305.zip
Upgrade ghc stable snapshot to 7.4.2rc1.
svn path=/nixpkgs/trunk/; revision=34137
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/ghc/7.4.2.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix
index 1ea9e24a120..660f316e120 100644
--- a/pkgs/development/compilers/ghc/7.4.2.nix
+++ b/pkgs/development/compilers/ghc/7.4.2.nix
@@ -1,17 +1,19 @@
 { stdenv, fetchurl, ghc, perl, gmp, ncurses }:
 
 stdenv.mkDerivation rec {
-  version = "7.4.1.20120412";
+  version = "7.4.1.20120508";
 
   name = "ghc-${version}";
 
   src = fetchurl {
-    url = "http://haskell.org/ghc/dist/stable/dist/${name}-src.tar.bz2";
-    sha256 = "0hpzd51s5nvlsjk3wza45ji5v6m0szqjzch45fvv7wfzllrm595l";
+    url = "http://haskell.org/ghc/dist/7.4.2-rc1/${name}-src.tar.bz2";
+    sha256 = "0i55003p6ns5vzx8dpni5jv45kxwjqqgspf76505l2vcilra8j2c";
   };
 
   buildInputs = [ ghc perl gmp ncurses ];
 
+  enableParallelBuilding = true;
+
   buildMK = ''
     libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"
     libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include"