From e5e24322778c041ca9eac9f8850dcc9dbffd2305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20L=C3=B6h?= Date: Wed, 16 May 2012 12:00:05 +0000 Subject: [PATCH] Upgrade ghc stable snapshot to 7.4.2rc1. svn path=/nixpkgs/trunk/; revision=34137 --- pkgs/development/compilers/ghc/7.4.2.nix | 8 +++++--- 1 file 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 1ea9e24a120e..660f316e120d 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"