nixpkgs/pkgs/servers/http/jetty/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

14 lines
264 B
Nix

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "jetty-5.1.4";
builder = ./bin-builder.sh;
buildInputs = [unzip];
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/jetty-5.1.4.zip;
md5 = "5d16bb1ea4a62dff93c0b7f7de00430f";
};
}