* Jetty 5.1.12 (couldn't get 5.1.14 to work quickly).

svn path=/nixpkgs/trunk/; revision=10702
This commit is contained in:
Eelco Dolstra 2008-02-15 10:56:31 +00:00
parent cc3ab45e92
commit 4b009da5fd

View File

@ -1,13 +1,19 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "jetty-5.1.4";
builder = ./bin-builder.sh;
buildInputs = [unzip];
name = "jetty-5.1.12";
src = fetchurl {
url = mirror://sourceforge/jetty/jetty-5.1.4.zip;
md5 = "5d16bb1ea4a62dff93c0b7f7de00430f";
url = ftp://ftp.mortbay.org/pub/jetty-5/jetty-5.1.12.zip;
sha256 = "04nysajgrlyvfh810jpyr8iay38kwjrbmh6bgs10mwd30qhj4rd1";
};
buildInputs = [unzip];
buildPhase = "true";
installPhase = ''
ensureDir $out
cp -pr * $out/
'';
}