about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndres Loeh <mail@andres-loeh.de>2012-11-07 14:43:39 +0100
committerAndres Loeh <mail@andres-loeh.de>2012-11-07 14:45:32 +0100
commit8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd (patch)
tree00bb0ac3f64a04f2a4119d85405d7068f741c1fe
parent577995f592130ec458b2e70963db40ae9f5ba84d (diff)
downloadnixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.tar
nixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.tar.gz
nixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.tar.bz2
nixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.tar.lz
nixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.tar.xz
nixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.tar.zst
nixlib-8c4f5d02aa0967d70237dfdd2a12c9e37da4d3fd.zip
Updating ghc HEAD snapshot.
-rw-r--r--pkgs/development/compilers/ghc/head.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix
index 5487b00cef26..67f2b4f5c7e2 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, ghc, perl, gmp, ncurses }:
 
 stdenv.mkDerivation rec {
-  version = "7.7.20120912";
+  version = "7.7.20121106";
   name = "ghc-${version}";
 
   src = fetchurl {
     url = "http://haskell.org/ghc/dist/current/dist/${name}-src.tar.bz2";
-    sha256 = "0dilndcfs1nhs48nhi361bpffmbbyjaq1i6qnzn24vg34wckyrjg";
+    sha256 = "1n3xj8arkzfvs3q1ymxsnbzs23ndsp8pl67sqirl837pkgcmq263";
   };
 
   buildInputs = [ ghc perl gmp ncurses ];
@@ -16,6 +16,7 @@ stdenv.mkDerivation rec {
   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"
+    DYNAMIC_BY_DEFAULT = NO
   '';
 
   preConfigure = ''