nixpkgs/pkgs/development/tools/build-managers/apache-ant/default.nix
Martin Bravenboer 4c70ef7e5d Cleaning up the java naming conventions
svn path=/nixpkgs/trunk/; revision=3871
2005-09-17 23:58:51 +00:00

17 lines
269 B
Nix

{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;
};
}