nixpkgs/pkgs/development/compilers/helium/default.nix
Eelco Dolstra 3c1c258aa5 * Use PatchELF 0.1.
svn path=/nixpkgs/trunk/; revision=4062
2005-10-11 13:31:33 +00:00

14 lines
271 B
Nix

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