2005-10-11 15:31:33 +02:00
|
|
|
{stdenv, fetchurl, perl, readline, ncurses}:
|
2004-02-12 14:18:24 +01:00
|
|
|
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
|
2004-04-07 16:16:57 +02:00
|
|
|
stdenv.mkDerivation {
|
2005-10-02 20:48:08 +02:00
|
|
|
name = "ghc-6.4.1";
|
|
|
|
builder = ./boot.sh;
|
2004-02-12 14:18:24 +01:00
|
|
|
src = fetchurl {
|
2006-01-30 17:04:03 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.4.1-i386-unknown-linux.tar.bz2;
|
2005-10-02 20:48:08 +02:00
|
|
|
md5 = "9cd18a8e946da91b373b8ec855cd842e";
|
2004-02-12 14:18:24 +01:00
|
|
|
};
|
2005-10-11 15:31:33 +02:00
|
|
|
buildInputs = [perl];
|
2005-10-02 20:48:08 +02:00
|
|
|
propagatedBuildInputs = [readline ncurses];
|
|
|
|
inherit readline ncurses;
|
2004-02-12 14:18:24 +01:00
|
|
|
}
|