diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix index 8f3b6833fa1..e00702b8d84 100644 --- a/pkgs/development/compilers/ghc/6.10.2-binary.nix +++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, perl, libedit, ncurses, gmp, makeWrapper}: +{stdenv, fetchurl, perl, libedit, ncurses, gmp}: stdenv.mkDerivation rec { version = "6.10.2"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { } else throw "cannot bootstrap GHC on this platform"; - buildInputs = [perl makeWrapper]; + buildInputs = [perl]; postUnpack = # Strip is harmful, see also below. It's important that this happens diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 38c1a14b576..8e32139cb42 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1868,9 +1868,7 @@ let }); ghc6103Binary = lowPrio (import ../development/compilers/ghc/6.10.2-binary.nix { - inherit fetchurl stdenv ncurses gmp libedit makeWrapper; - # readline = if stdenv.system == "i686-linux" then readline4 else readline; - perl = perl58; + inherit fetchurl stdenv perl ncurses gmp libedit; }); gprolog = import ../development/compilers/gprolog {