nixpkgs/pkgs/development/compilers/helium/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
295 B
Nix

{stdenv, fetchurl, ghc}:
assert ghc != null;
derivation {
name = "helium-1.2";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.cs.uu.nl/helium/distr/helium-1.2-src.tar.gz;
md5 = "6ea1d6e4436e137d75f5354b4758f299";
};
inherit stdenv ghc;
}