Added Apache Tomcat 6.0

svn path=/nixpkgs/branches/stdenv-updates/; revision=10425
This commit is contained in:
Yury G. Kudryashov 2008-01-31 10:39:47 +00:00
parent 4ef94bc906
commit 671fd9e721
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

@ -3224,6 +3224,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 libcap pam;
};