e86a4a1112
svn path=/nixpkgs/trunk/; revision=1149
18 lines
278 B
Nix
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;
|
|
};
|
|
}
|