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:
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user