nixpkgs/pkgs/development/libraries/java/httpunit/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
255 B
Nix

{stdenv, fetchurl, unzip} :
stdenv.mkDerivation {
name = "httpunit-1.6";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/httpunit-1.6.zip;
md5 = "e94b53b9f4d7bdb706e4baac95b6e424";
};
inherit unzip;
}