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

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

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

  inherit javaCup;
  buildInputs = [apacheAnt];
}