nixpkgs/pkgs/development/compilers/ghc/boot.nix
Eelco Dolstra 191a465665 * Added GHC and Helium. Note that GHC is built using a pre-built GHC
for Linux/x86, which is not pure and doesn't work on other
  platforms!

svn path=/nixpkgs/trunk/; revision=776
2004-02-12 13:18:24 +00:00

17 lines
347 B
Nix

{stdenv, fetchurl, perl}:
assert perl != null;
assert stdenv.system == "i686-linux";
derivation {
name = "ghc-6.2";
system = stdenv.system;
builder = ./boot.sh;
src = fetchurl {
url = http://www.haskell.org/ghc/dist/6.2/ghc-6.2-i386-unknown-linux.tar.bz2;
md5 = "5b2f19ca00fd7494002047d7fb4dce3e";
};
inherit stdenv perl;
}