Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "dontgo403"; 8 version = "0.9.3"; 9 10 src = fetchFromGitHub { 11 owner = "devploit"; 12 repo = pname; 13 rev = "refs/tags/${version}"; 14 hash = "sha256-WGI98IUyvcPGD9IbIF1ZWa72Dnork6xE+XoVYUx1zAc="; 15 }; 16 17 vendorHash = "sha256-IGnTbuaQH8A6aKyahHMd2RyFRh4WxZ3Vx/A9V3uelRg="; 18 19 meta = with lib; { 20 description = "Tool to bypass 40X response codes"; 21 homepage = "https://github.com/devploit/dontgo403"; 22 changelog = "https://github.com/devploit/dontgo403/releases/tag/${version}"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ fab ]; 25 }; 26}