Added the Ant wrapper. The ant script in this wrapper sets the config in environment variables and invokes core-ant.

svn path=/nixpkgs/trunk/; revision=1149
This commit is contained in:
Martin Bravenboer
2004-07-10 16:17:48 +00:00
parent feeff4dfb1
commit e86a4a1112
4 changed files with 38 additions and 2 deletions
@@ -0,0 +1,17 @@
{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;
};
}