1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/tools/build-managers/apache-ant/default.nix
2004-07-10 16:17:48 +00:00

18 lines
278 B
Nix

{stdenv, fetchurl, j2sdk}:
rec {
body =
stdenv.mkDerivation {
name = ant.realname;
builder = ./builder.sh;
inherit ant j2sdk;
buildInputs = [ant j2sdk];
};
ant =
(import ./core-apache-ant.nix) {
inherit fetchurl stdenv;
};
}