summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/7.4.2.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-04-23 16:28:10 +0000
committerLudovic Courtès <ludo@gnu.org>2012-04-23 16:28:10 +0000
commitd44d30b0ba13244a9ff4a8832d8ab984792db9aa (patch)
tree7aee44d1ed9dcb63973174b8ab67daa664bb43a4 /pkgs/development/compilers/ghc/7.4.2.nix
parentb53f6b9dd02573090dee8538ab7e88848759882f (diff)
downloadnixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.tar
nixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.tar.gz
nixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.tar.bz2
nixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.tar.lz
nixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.tar.xz
nixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.tar.zst
nixlib-d44d30b0ba13244a9ff4a8832d8ab984792db9aa.zip
GHC 7.4.2: Remove `darwinInstallNameToolUtility'.
svn path=/nixpkgs/trunk/; revision=33897
Diffstat (limited to 'pkgs/development/compilers/ghc/7.4.2.nix')
-rw-r--r--pkgs/development/compilers/ghc/7.4.2.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix
index 567e6c75def5..1ea9e24a120e 100644
--- a/pkgs/development/compilers/ghc/7.4.2.nix
+++ b/pkgs/development/compilers/ghc/7.4.2.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, ghc, perl, gmp, ncurses, darwinInstallNameToolUtility}:
+{ stdenv, fetchurl, ghc, perl, gmp, ncurses }:
 
 stdenv.mkDerivation rec {
   version = "7.4.1.20120412";
@@ -10,8 +10,7 @@ stdenv.mkDerivation rec {
     sha256 = "0hpzd51s5nvlsjk3wza45ji5v6m0szqjzch45fvv7wfzllrm595l";
   };
 
-  buildInputs = [ghc perl gmp ncurses] ++
-    (if stdenv.isDarwin then [darwinInstallNameToolUtility] else []);
+  buildInputs = [ ghc perl gmp ncurses ];
 
   buildMK = ''
     libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib"