about summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/apache-ant/default.nix
blob: 2532db69f97f109a56fc2218479774af9c1dae46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl, jdk, name}:

let {
  body =
    stdenv.mkDerivation {
      name = name;
      builder = ./builder.sh;
      buildInputs = [ant jdk];
      inherit ant jdk;
    };

  ant =
    (import ./core-apache-ant.nix) {
      inherit fetchurl stdenv;
    };
}