3
0
Fork 0
forked from mirrors/nixpkgs

Added Apache Tomcat 6.0

svn path=/nixpkgs/trunk/; revision=10400
This commit is contained in:
Sander van der Burg 2008-01-30 09:41:33 +00:00
parent 5e629257d8
commit 75ae1c3a58
3 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{stdenv, fetchurl, jdk}:
stdenv.mkDerivation {
name = "apache-tomcat-6.0.14";
builder = ./builder-6.0.sh;
src = fetchurl {
url = http://apache.mirrors.webazilla.nl/tomcat/tomcat-6/v6.0.14/bin/apache-tomcat-6.0.14.tar.gz;
md5 = "3b18ff250d8172737c4f67f11631f68a";
};
inherit jdk;
}

View file

@ -0,0 +1,6 @@
source $stdenv/setup
tar zxf $src
mkdir $out
mv apache-tomcat*/* $out

View file

@ -3230,6 +3230,10 @@ rec {
inherit fetchurl stdenv jdk;
};
tomcat6 = import ../servers/http/tomcat/6.0.nix {
inherit fetchurl stdenv jdk;
};
vsftpd = import ../servers/ftp/vsftpd {
inherit fetchurl openssl ;
stdenv = overrideGCC stdenv gcc295 ;