3
0
Fork 0
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:
Eelco Dolstra 2005-10-04 20:16:33 +00:00
parent d95b8c1db3
commit 45f652ce1b
2 changed files with 3 additions and 2 deletions

View file

@ -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];
}

View file

@ -563,7 +563,7 @@ rec {
};
ghc = (import ../development/compilers/ghc) {
inherit fetchurl stdenv perl;
inherit fetchurl stdenv perl ncurses readline;
ghc = ghcboot;
m4 = gnum4;
};