Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-16.03 13 lines 274 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}