subjs: init at 1.0.1

This commit is contained in:
Fabian Affolter 2021-01-07 13:55:55 +01:00
parent 210b6509ed
commit 15da30e04a
2 changed files with 34 additions and 0 deletions

@ -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 ];
};
}

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