4c70ef7e5d
svn path=/nixpkgs/trunk/; revision=3871
17 lines
269 B
Nix
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;
|
|
};
|
|
}
|