Add Jetty code

svn path=/nixpkgs/trunk/; revision=1369
This commit is contained in:
Martin Bravenboer
2004-08-30 18:22:14 +00:00
parent b458af7384
commit c9bcdda7c6
3 changed files with 23 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
set -e
. $stdenv/setup
tar zxf $src
mkdir $out
mv jetty*/* $out
+12
View File
@@ -0,0 +1,12 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "jetty-4.2.22";
builder = ./bin-builder.sh;
src = fetchurl {
url = http://belnet.dl.sourceforge.net/sourceforge/jetty/jetty-4.2.22.tar.gz;
md5 = "e89c582d1846cd7d31e402abaf801e17";
};
}