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

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

32 lines
826 B
Nix
Raw Normal View History

2021-04-18 12:18:12 +00:00
{ lib
, buildGoModule
2020-12-27 15:52:39 +00:00
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ffuf";
2023-02-08 21:57:54 +00:00
version = "2.0.0";
2020-12-27 15:52:39 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
2023-02-09 14:42:54 +00:00
rev = "refs/tags/v${version}";
hash = "sha256-TfPglATKQ3RIGODcIpSRL6FjbLyCjDzbi70jTLKYlLk=";
2020-12-27 15:52:39 +00:00
};
2023-02-08 21:57:54 +00:00
vendorHash = "sha256-nqv45e1W7MA8ElsJ7b4XWs26OicJ7IXmh93+wkueZg4=";
2020-12-27 15:52:39 +00:00
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";
2023-02-09 14:42:54 +00:00
changelog = "https://github.com/ffuf/ffuf/releases/tag/v${version}";
2020-12-27 15:52:39 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}