mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
33 lines
812 B
Nix
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 ];
|
|
};
|
|
}
|