summary refs log tree commit diff
path: root/pkgs/tools/security/crlfuzz/default.nix
blob: 88bd45bb5e161aedf072008f9166f5f26efac732 (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
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule rec {
  pname = "crlfuzz";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "dwisiswant0";
    repo = pname;
    rev = "v${version}";
    sha256 = "03g7z7cczn52hvg6srp1i5xhdbpia226adrh2d54cs640063bx3m";
  };

  vendorSha256 = "19cj07f7d3ksp7lh5amdjz1s8p7xmqbwal4vp61al82n8944ify8";

  doCheck = true;

  meta = with lib; {
    description = "Tool to scan for CRLF vulnerability";
    homepage = "https://github.com/dwisiswant0/crlfuzz";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}