8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
19 lines
420 B
Nix
19 lines
420 B
Nix
{stdenv, fetchurl, unzip} :
|
|
|
|
stdenv.mkDerivation {
|
|
name = "httpunit-1.7";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/httpunit/httpunit-1.7.zip";
|
|
sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf";
|
|
};
|
|
|
|
inherit unzip;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://httpunit.sourceforge.net";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
};
|
|
}
|