nixpkgs/pkgs/development/compilers/ghc/boot.nix
Eelco Dolstra 45e1edfda8 * Give the GHC builder a temporary $HOME.
svn path=/nixpkgs/trunk/; revision=5504
2006-06-23 20:08:48 +00:00

16 lines
408 B
Nix

{stdenv, fetchurl, perl, readline, ncurses}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "ghc-6.4.2";
builder = ./boot.sh;
src = fetchurl {
url = http://www.haskell.org/ghc/dist/6.4.2/ghc-6.4.2-i386-unknown-linux.tar.bz2;
md5 = "092fe2e25dab22b926babe97cc77db1f";
};
buildInputs = [perl];
propagatedBuildInputs = [readline ncurses];
inherit readline ncurses;
}