Added jetty 6.1

svn path=/nixpkgs/trunk/; revision=10858
This commit is contained in:
Sander van der Burg 2008-02-26 09:26:17 +00:00
parent 1974f19dff
commit a40f5bee8a
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,7 @@
set -e
source $stdenv/setup
unzip $src
ensureDir $out/$name
mv jetty*/* $out/$name

View File

@ -0,0 +1,13 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "jetty-6.1.3";
builder = ./bin-builder.sh;
buildInputs = [unzip];
src = fetchurl {
url = http://dist.codehaus.org/jetty/jetty-6.1.x/jetty-6.1.3.zip;
md5 = "bb39bba9ce017e7cd3996cb3e83e8971";
};
}

View File

@ -3572,6 +3572,10 @@ rec {
inherit fetchurl stdenv unzip;
};
jetty61 = import ../servers/http/jetty/6.1 {
inherit fetchurl stdenv unzip;
};
mod_python = import ../servers/http/apache-modules/mod_python {
inherit fetchurl stdenv apacheHttpd python;
};