summary refs log tree commit diff
path: root/pkgs/development/compilers/helium/default.nix
blob: a2437d845351ea09671015af7d110c8e19732c6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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;
}