about summary refs log tree commit diff
path: root/pkgs/development/tools/java/jclasslib/default.nix
blob: dc0d475c4389ae4e9c7b903d27ab349b05052027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl, xpf, jre, ant}:

stdenv.mkDerivation {
  name = "jclasslib-2.0";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/jclasslib_unix_2_0.tar.gz;
    md5 = "31d91bb03fee23410689d2f1c4c439b1";
  };

  inherit jre xpf ant;
  buildInputs = [xpf ant];
}