summary refs log tree commit diff
path: root/pkgs/development/compilers/gwydion-dylan/default.nix
blob: 443fbaff7293b56cc4bb032d4bc551587c936645 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, dylan, boehmgc, perl, flex, yacc, readline}:

stdenv.mkDerivation {
  name = "gwydion-dylan-2.4.0";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/gwydion-dylan-2.4.0.tar.gz;
    md5 = "7ed180bf4ef11e8e8da3bd78b45477a8";
  };

  inherit boehmgc dylan perl;
  buildInputs = [boehmgc dylan perl flex yacc readline];
}