rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / subfinder / default.nix
blob1b4bb71f4ab5edb87c29680a8aa9dce601fa8be0
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "subfinder";
8   version = "2.6.6";
10   src = fetchFromGitHub {
11     owner = "projectdiscovery";
12     repo = "subfinder";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-A9qSrgQB7AE+9S3SW1eXRGA65RfEzrjYR2XgU8e+zMk=";
15   };
17   vendorHash = "sha256-j2WO+LLvioBB2EU/6ahyTn9H614Dmiskm0p7GOgqYNY=";
19   modRoot = "./v2";
21   subPackages = [
22     "cmd/subfinder/"
23   ];
25   ldflags = [
26     "-w"
27     "-s"
28   ];
30   meta = with lib; {
31     description = "Subdomain discovery tool";
32     longDescription = ''
33       SubFinder is a subdomain discovery tool that discovers valid
34       subdomains for websites. Designed as a passive framework to be
35       useful for bug bounties and safe for penetration testing.
36     '';
37     homepage = "https://github.com/projectdiscovery/subfinder";
38     license = licenses.mit;
39     maintainers = with maintainers; [ fpletz Br1ght0ne Misaka13514 ];
40     mainProgram = "subfinder";
41   };