nixpkgs/pkgs/development/libraries/java/httpunit/default.nix

14 lines
274 B
Nix
Raw Normal View History

{stdenv, fetchurl, unzip} :
stdenv.mkDerivation {
2013-12-15 22:49:32 +00:00
name = "httpunit-1.7";
builder = ./builder.sh;
src = fetchurl {
2013-12-15 22:49:32 +00:00
url = mirror://sourceforge/httpunit/httpunit-1.7.zip;
sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf";
};
inherit unzip;
}