nixpkgs/pkgs/tools/security/subjs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
812 B
Nix
Raw Normal View History

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