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

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

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

  inherit polyglot jasmin;
  buildInputs = [apacheAnt];
}