nixpkgs/pkgs/development/compilers/ghc/default.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

15 lines
341 B
Nix

{stdenv, fetchurl, perl, ghc, m4}:
assert perl != null && ghc != null && m4 != null;
derivation {
name = "ghc-6.2";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.haskell.org/ghc/dist/6.2/ghc-6.2-src.tar.bz2;
md5 = "cc495e263f4384e1d6b38e851bf6eca0";
};
inherit stdenv perl ghc m4;
}