nixpkgs/pkgs/servers/http/tomcat/default.nix
Eelco Visser 7f3a3764ee - 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
2004-08-20 10:14:55 +00:00

17 lines
280 B
Nix

{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";
};
}