nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 19 lines 416 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 = with stdenv.lib; { 15 homepage = http://httpunit.sourceforge.net; 16 platforms = platforms.unix; 17 license = licenses.mit; 18 }; 19}