nixpkgs/pkgs/tools/security/subjs/default.nix
2021-08-26 21:35:06 +10:00

33 lines
812 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "subjs";
version = "1.0.1";
src = fetchFromGitHub {
owner = "lc";
repo = pname;
rev = "v${version}";
sha256 = "01cip5rf35dnh3l325p03y6axyqdpf48ry4zcwiyd7hlfsglbk3j";
};
vendorSha256 = "1y01k8pvv7y9zb15wbk068cvkx0g83484jak2dvcvghqcf5j1fr1";
ldflags = [ "-s" "-w" "-X main.AppVersion=${version}" ];
meta = with 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 ];
};
}