at 18.09-beta 334 B view raw
1{stdenv, fetchurl, unzip} : 2 3stdenv.mkDerivation { 4 name = "httpunit-1.7"; 5 builder = ./builder.sh; 6 7 src = fetchurl { 8 url = mirror://sourceforge/httpunit/httpunit-1.7.zip; 9 sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf"; 10 }; 11 12 inherit unzip; 13 14 meta = { 15 platforms = stdenv.lib.platforms.unix; 16 }; 17}