about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/ffuf/default.nix
blob: ae0a19bff0226e6faae00fddc61a05bd1c5d965c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ lib
, buildGoModule
, fetchFromGitHub
, fetchpatch
}:

buildGoModule rec {
  pname = "ffuf";
  version = "2.1.0";

  src = fetchFromGitHub {
    owner = "ffuf";
    repo = "ffuf";
    rev = "refs/tags/v${version}";
    hash = "sha256-+wcNqQHtB8yCLiJXMBxolCWsYZbBAsBGS1hs7j1lzUU=";
  };

  vendorHash = "sha256-SrC6Q7RKf+gwjJbxSZkWARw+kRtkwVv1UJshc/TkNdc=";

  patches = [
    # Fix CSV test, https://github.com/ffuf/ffuf/pull/731
    (fetchpatch {
      name = "fix-csv-test.patch";
      url = "https://github.com/ffuf/ffuf/commit/7f2aae005ad73988a1fa13c1c33dab71f4ae5bbd.patch";
      hash = "sha256-/v9shGICmsbFfEJe4qBkBHB9PVbBlrjY3uFmODxHu9M=";
    })
  ];

  ldflags = [
    "-w"
    "-s"
  ];

  meta = with lib; {
    description = "Tool for web fuzzing";
    mainProgram = "ffuf";
    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";
    changelog = "https://github.com/ffuf/ffuf/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}