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

35 lines
874 B
Nix
Raw Normal View History

2020-12-27 15:52:39 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 15:52:39 +00:00
}:
buildGoModule rec {
pname = "ffuf";
2021-01-29 01:28:06 +00:00
version = "1.2.1";
2020-12-27 15:52:39 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-01-29 01:28:06 +00:00
sha256 = "sha256-XSdFLfSYDdKI7BYo9emYanvZeSFGxiNLYxuw5QKAyRc=";
2020-12-27 15:52:39 +00:00
};
2021-01-29 01:28:06 +00:00
vendorSha256 = "sha256-szT08rIozAuliOmge5RFX4NeVrJ2pCVyfotrHuvc0UU=";
2020-12-27 15:52:39 +00:00
# tests don't pass due to an issue with the memory addresses
# https://github.com/ffuf/ffuf/issues/367
doCheck = false;
meta = with lib; {
2020-12-27 15:52:39 +00:00
description = "Fast web fuzzer written in Go";
longDescription = ''
FFUF, or Fuzz Faster you Fool is an open source web fuzzing tool,
intended for discovering elements and content within web applications
or web servers.
'';
homepage = "https://github.com/ffuf/ffuf";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}