7f3a3764ee
- comment out ant15 since nix-env cannot make the distinction - installation of tomcat 5 svn path=/nixpkgs/trunk/; revision=1299
17 lines
280 B
Nix
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";
|
|
};
|
|
|
|
}
|
|
|
|
|