Added Apache Ant, including configuration of JAVA_HOME and ANT_HOME. Currently only the shell script is patched, but this one is used most in practice.

svn path=/nixpkgs/trunk/; revision=718
This commit is contained in:
Martin Bravenboer
2004-01-25 00:50:00 +00:00
parent d427c4271d
commit d9cebb072f
3 changed files with 37 additions and 0 deletions
@@ -0,0 +1,10 @@
{stdenv, fetchurl, j2sdk}: derivation {
name = "apache-ant-1.6.0";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://dist.apache.easynet.nl/ant/binaries/apache-ant-1.6.0-bin.tar.bz2;
md5 = "01989c306da53862c101d9ea4ebb1f00";
};
stdenv = stdenv;
}