uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
36
pkgs/tools/networking/subfinder/default.nix
Normal file
36
pkgs/tools/networking/subfinder/default.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "subfinder";
|
||||
version = "2.5.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "projectdiscovery";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-t5bIIb31gb6f7hVeiTmMut0wXl40/Du4W9lnB49jlFA=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-lyqjODNk7R6mvSl/I1zFgXvs4m60D4gwfgJ6ocoOHhc=";
|
||||
|
||||
modRoot = "./v2";
|
||||
|
||||
subPackages = [
|
||||
"cmd/subfinder/"
|
||||
];
|
||||
|
||||
meta = with 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 Br1ght0ne ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue