Merge pull request #108660 from fabaff/subjs

subjs: init at 1.0.1
This commit is contained in:
Sandro 2021-01-07 21:07:03 +01:00 committed by GitHub
commit e587f393dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ buildGoModule
, fetchFromGitHub
, stdenv
}:
buildGoModule rec {
pname = "subjs";
version = "1.0.1";
src = fetchFromGitHub {
owner = "lc";
repo = pname;
rev = "v${version}";
sha256 = "01cip5rf35dnh3l325p03y6axyqdpf48ry4zcwiyd7hlfsglbk3j";
};
vendorSha256 = "1y01k8pvv7y9zb15wbk068cvkx0g83484jak2dvcvghqcf5j1fr1";
buildFlagsArray = [ "-ldflags=-s -w -X main.AppVersion=${version}" ];
meta = with stdenv.lib; {
description = "Fetcher for Javascript files";
longDescription = ''
subjs fetches Javascript files from a list of URLs or subdomains.
Analyzing Javascript files can help you find undocumented endpoints,
secrets and more.
'';
homepage = "https://github.com/lc/subjs";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -7709,6 +7709,8 @@ in
su = shadow.su;
subjs = callPackage ../tools/security/subjs { };
subsonic = callPackage ../servers/misc/subsonic { };
subfinder = callPackage ../tools/networking/subfinder { };