- upgrade ant to 1.6.2

- comment out ant15 since nix-env cannot make the distinction
- installation of tomcat 5

svn path=/nixpkgs/trunk/; revision=1299
This commit is contained in:
Eelco Visser
2004-08-20 10:14:55 +00:00
parent f407ca0506
commit 7f3a3764ee
6 changed files with 44 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
. $stdenv/setup || exit 1
tar zxf $src
mkdir $out
mv jakarta-tomcat* $out
+16
View File
@@ -0,0 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "jakarta-tomcat-5.0.27";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.essentkabel.com/jakarta/tomcat-5/v5.0.27/bin/jakarta-tomcat-5.0.27.tar.gz;
md5 = "b802ee042677e284bcf65738c7bdc3b6";
};
}