summary refs log tree commit diff
path: root/pkgs/development/compilers/abc/polyglot/default.nix
blob: 99ca28d0455463f5faa53355c6c54b93c9563611 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, apacheAnt}:

stdenv.mkDerivation {
  name = "polyglot-dev-20060422015512";
  builder = ./builder.sh;

  src = fetchurl {
    url = http://abc.comlab.ox.ac.uk/dists/1.2.0/files/polyglot-dev-20060422015512.tar.gz;
    md5 = "6972fe537b4edd41872ed1cf24d24b50";
  };

  buildInputs = [apacheAnt];
}