forked from mirrors/nixpkgs
Added jetty 6.1
svn path=/nixpkgs/trunk/; revision=10858
This commit is contained in:
parent
1974f19dff
commit
a40f5bee8a
7
pkgs/servers/http/jetty/6.1/bin-builder.sh
Normal file
7
pkgs/servers/http/jetty/6.1/bin-builder.sh
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
set -e
|
||||||
|
|
||||||
|
source $stdenv/setup
|
||||||
|
|
||||||
|
unzip $src
|
||||||
|
ensureDir $out/$name
|
||||||
|
mv jetty*/* $out/$name
|
13
pkgs/servers/http/jetty/6.1/default.nix
Normal file
13
pkgs/servers/http/jetty/6.1/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -3572,6 +3572,10 @@ rec {
|
||||||
inherit fetchurl stdenv unzip;
|
inherit fetchurl stdenv unzip;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jetty61 = import ../servers/http/jetty/6.1 {
|
||||||
|
inherit fetchurl stdenv unzip;
|
||||||
|
};
|
||||||
|
|
||||||
mod_python = import ../servers/http/apache-modules/mod_python {
|
mod_python = import ../servers/http/apache-modules/mod_python {
|
||||||
inherit fetchurl stdenv apacheHttpd python;
|
inherit fetchurl stdenv apacheHttpd python;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue