nixpkgs-suyu/pkgs/tools/networking/subfinder/default.nix

30 lines
836 B
Nix
Raw Normal View History

2018-07-15 19:00:54 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2019-12-08 11:07:27 +01:00
buildGoPackage rec {
pname = "subfinder";
2020-01-15 11:13:45 +01:00
version = "2.3.0";
2018-07-15 19:00:54 +02:00
2019-12-08 11:07:27 +01:00
goPackagePath = "github.com/projectdiscovery/subfinder";
2018-07-15 19:00:54 +02:00
src = fetchFromGitHub {
2019-12-08 11:07:27 +01:00
owner = "projectdiscovery";
repo = pname;
rev = "v${version}";
2020-01-15 11:13:45 +01:00
sha256 = "1vjxi2h4njakyqkfzwwaacy37kqx66j2y3k5l752z9va73gv7xv1";
2018-07-15 19:00:54 +02:00
};
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.
'';
2019-12-08 11:07:27 +01:00
homepage = "https://github.com/projectdiscovery/subfinder";
2018-07-15 19:00:54 +02:00
license = licenses.mit;
maintainers = with maintainers; [ fpletz filalex77 ];
2018-07-15 19:00:54 +02:00
};
}