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

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

34 lines
833 B
Nix
Raw Normal View History

2021-01-07 12:55:55 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2021-01-07 12:55:55 +00:00
}:
buildGoModule rec {
pname = "subjs";
version = "1.0.1";
src = fetchFromGitHub {
owner = "lc";
repo = pname;
rev = "v${version}";
2023-09-01 01:55:36 +00:00
hash = "sha256-csxFn3YUnuYjZ5/4jIi7DfuujB/gFjHogLaV4XK5kQU=";
2021-01-07 12:55:55 +00:00
};
2023-09-01 01:55:36 +00:00
vendorHash = "sha256-Ibsgi2MYvs12E1NJgshAD/S5GTJgLl7C+smfvS+aAfg=";
2021-01-07 12:55:55 +00:00
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X main.AppVersion=${version}" ];
2021-01-07 12:55:55 +00:00
meta = with lib; {
2021-01-07 12:55:55 +00:00
description = "Fetcher for Javascript files";
mainProgram = "subjs";
2021-01-07 12:55:55 +00:00
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 ];
};
}