summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/ghc/boot.nix')
-rw-r--r--pkgs/development/compilers/ghc/boot.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/boot.nix b/pkgs/development/compilers/ghc/boot.nix
index a6e04b4d4489..54b32ece9388 100644
--- a/pkgs/development/compilers/ghc/boot.nix
+++ b/pkgs/development/compilers/ghc/boot.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, perl, patchelf, readline, ncurses}:
+{stdenv, fetchurl, perl, readline, ncurses}:
 
 assert stdenv.system == "i686-linux";
 
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
     url = http://www.haskell.org/ghc/dist/6.4.1/ghc-6.4.1-i386-unknown-linux.tar.bz2;
     md5 = "9cd18a8e946da91b373b8ec855cd842e";
   };
-  buildInputs = [perl patchelf];
+  buildInputs = [perl];
   propagatedBuildInputs = [readline ncurses];
   inherit readline ncurses;
 }