Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5}: 6 7stdenv.mkDerivation rec { 8 pname = "httpunit"; 9 version = "1.7"; 10 11 src = fetchurl { 12 url = "mirror://sourceforge/httpunit/httpunit-${version}.zip"; 13 sha256 = "09gnayqgizd8cjqayvdpkxrc69ipyxawc96aznfrgdhdiwv8l5zf"; 14 }; 15 16 buildCommand = '' 17 cp ./* $out 18 ''; 19 20 meta = with lib; { 21 homepage = "https://httpunit.sourceforge.net"; 22 platforms = platforms.unix; 23 license = licenses.mit; 24 }; 25}