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

31 lines
747 B
Nix
Raw Normal View History

2021-04-18 14:18:12 +02:00
{ lib
, buildGoModule
2020-12-27 16:52:39 +01:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ffuf";
2021-04-28 23:33:09 +02:00
version = "1.3.1";
2020-12-27 16:52:39 +01:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2021-04-28 23:33:09 +02:00
sha256 = "sha256-NkRf36wFmzqFv13P0DxpzEOGyBGbSXMLjWE7URzRXGY=";
2020-12-27 16:52:39 +01:00
};
2021-01-29 02:28:06 +01:00
vendorSha256 = "sha256-szT08rIozAuliOmge5RFX4NeVrJ2pCVyfotrHuvc0UU=";
2020-12-27 16:52:39 +01:00
meta = with lib; {
2020-12-27 16:52:39 +01: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 ];
};
}