90a5f1fec4
of debug info per request and I can't be bothered to figure out how to turn it off. svn path=/nixpkgs/trunk/; revision=10728
14 lines
257 B
Nix
14 lines
257 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jetty-5.1.4";
|
|
|
|
builder = ./bin-builder.sh;
|
|
buildInputs = [unzip];
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/jetty/jetty-5.1.4.zip;
|
|
md5 = "5d16bb1ea4a62dff93c0b7f7de00430f";
|
|
};
|
|
}
|