3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
16 lines
404 B
Nix
16 lines
404 B
Nix
{stdenv, fetchurl, perl, readline, ncurses}:
|
|
|
|
assert stdenv.system == "i686-linux";
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ghc-6.4.1";
|
|
builder = ./boot.sh;
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/ghc-6.4.1-i386-unknown-linux.tar.bz2;
|
|
md5 = "9cd18a8e946da91b373b8ec855cd842e";
|
|
};
|
|
buildInputs = [perl];
|
|
propagatedBuildInputs = [readline ncurses];
|
|
inherit readline ncurses;
|
|
}
|