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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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-03-28 04:58:17 +00:00
version = "0.8.1";
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-03-28 04:58:17 +00:00
hash = "sha256-Gpr2L7iSdMBqwMzdYDtdzyZYu+Uwjn1wZvw4LTr8xWI=";
2022-01-29 09:30:11 +00:00
};
2023-03-28 04:58:17 +00:00
vendorHash = "sha256-he/+M8NffvMLTdFQy5E2EnqLXkS/tK6eUGXTBKZSZCw=";
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 ];
};
}