forked from mirrors/nixpkgs
* Pass readline and ncurses to the source-built ghc as well.
svn path=/nixpkgs/trunk/; revision=4013
This commit is contained in:
parent
d95b8c1db3
commit
45f652ce1b
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, perl, ghc, m4}:
|
||||
{stdenv, fetchurl, perl, ghc, m4, readline, ncurses}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ghc-6.4.1";
|
||||
|
@ -7,4 +7,5 @@ stdenv.mkDerivation {
|
|||
md5 = "fd289bc7c3afa272ff831a71a50b5b00";
|
||||
};
|
||||
buildInputs = [perl ghc m4];
|
||||
propagatedBuildInputs = [readline ncurses];
|
||||
}
|
||||
|
|
|
@ -563,7 +563,7 @@ rec {
|
|||
};
|
||||
|
||||
ghc = (import ../development/compilers/ghc) {
|
||||
inherit fetchurl stdenv perl;
|
||||
inherit fetchurl stdenv perl ncurses readline;
|
||||
ghc = ghcboot;
|
||||
m4 = gnum4;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue