Moved a number of Java libraries from the GW project to the Nix
Package Collection. svn path=/nixpkgs/trunk/; revision=3803
This commit is contained in:
5
pkgs/development/libraries/java/httpunit/builder.sh
Executable file
5
pkgs/development/libraries/java/httpunit/builder.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
. $stdenv/setup
|
||||
|
||||
$unzip/bin/unzip $src
|
||||
mkdir $out
|
||||
mv $name/* $out/
|
||||
13
pkgs/development/libraries/java/httpunit/default.nix
Normal file
13
pkgs/development/libraries/java/httpunit/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{stdenv, fetchurl, unzip} :
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "httpunit-1.6";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://surfnet.dl.sourceforge.net/sourceforge/httpunit/httpunit-1.6.zip;
|
||||
md5 = "e94b53b9f4d7bdb706e4baac95b6e424";
|
||||
};
|
||||
|
||||
inherit unzip;
|
||||
}
|
||||
Reference in New Issue
Block a user