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