mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
30 lines
836 B
Nix
30 lines
836 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "subfinder";
|
|
version = "2.2.4";
|
|
|
|
goPackagePath = "github.com/projectdiscovery/subfinder";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "00ni835zvgrj8gmmmpjdszrcijyd6apig8rpb4g2z3g016b6gwar";
|
|
};
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Subdomain discovery tool";
|
|
longDescription = ''
|
|
SubFinder is a subdomain discovery tool that discovers valid
|
|
subdomains for websites. Designed as a passive framework to be
|
|
useful for bug bounties and safe for penetration testing.
|
|
'';
|
|
homepage = "https://github.com/projectdiscovery/subfinder";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fpletz filalex77 ];
|
|
};
|
|
}
|