biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / naabu / default.nix
blobcf82ca531195ba404462d81d20a58c4301c99f9f
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , libpcap
5 }:
7 buildGoModule rec {
8   pname = "naabu";
9   version = "2.3.1";
11   src = fetchFromGitHub {
12     owner = "projectdiscovery";
13     repo = "naabu";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-BICNSizc5DD538ZUoRUC1jSDCEkyrh7iYOM4a6cBqkQ=";
16   };
18   vendorHash = "sha256-GhnEjlV6b61VH/eswBQ9Lelc0IgGawjDRZHzGt7653Q=";
20   buildInputs = [
21     libpcap
22   ];
24   modRoot = "./v2";
26   subPackages = [
27     "cmd/naabu/"
28   ];
30   ldflags = [
31     "-w"
32     "-s"
33   ];
35   meta = with lib; {
36     description = "Fast SYN/CONNECT port scanner";
37     mainProgram = "naabu";
38     longDescription = ''
39       Naabu is a port scanning tool written in Go that allows you to enumerate
40       valid ports for hosts in a fast and reliable manner. It is a really simple
41       tool that does fast SYN/CONNECT scans on the host/list of hosts and lists
42       all ports that return a reply.
43     '';
44     homepage = "https://github.com/projectdiscovery/naabu";
45     changelog = "https://github.com/projectdiscovery/naabu/releases/tag/v${version}";
46     license = licenses.asl20;
47     maintainers = with maintainers; [ fab ];
48   };