nixpkgs/pkgs/tools/security/dontgo403/default.nix

27 lines
649 B
Nix
Raw Normal View History

2022-01-29 09:30:11 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dontgo403";
2023-05-30 23:59:02 +00:00
version = "0.9.3";
2022-01-29 09:30:11 +00:00
src = fetchFromGitHub {
owner = "devploit";
repo = pname;
2023-03-28 18:58:48 +00:00
rev = "refs/tags/${version}";
2023-05-30 23:59:02 +00:00
hash = "sha256-WGI98IUyvcPGD9IbIF1ZWa72Dnork6xE+XoVYUx1zAc=";
2022-01-29 09:30:11 +00:00
};
2023-05-30 23:59:02 +00:00
vendorHash = "sha256-IGnTbuaQH8A6aKyahHMd2RyFRh4WxZ3Vx/A9V3uelRg=";
2022-01-29 09:30:11 +00:00
meta = with lib; {
description = "Tool to bypass 40X response codes";
homepage = "https://github.com/devploit/dontgo403";
2023-03-28 21:59:27 +00:00
changelog = "https://github.com/devploit/dontgo403/releases/tag/${version}";
2022-01-29 09:30:11 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}