summary refs log tree commit diff
path: root/pkgs/development/compilers/helium/default.nix
blob: ac4ef2fb20d2abd20b8c7f9b2e7ee2f88f66caac (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.2";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.cs.uu.nl/helium/distr/helium-1.2-src.tar.gz;
    md5 = "6ea1d6e4436e137d75f5354b4758f299";
  };
  inherit ghc;
}