nixpkgs/pkgs/tools/security/jsubfinder/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

26 lines
671 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jsubfinder";
version = "unstable-2022-05-31";
src = fetchFromGitHub {
owner = "ThreatUnkown";
repo = pname;
rev = "e21de1ebc174bb69485f1c224e8063c77d87e4ad";
hash = "sha256-QjRYJyk0uFGa6FCCYK9SIJhoyam4ALsQJ26DsmbNk8s=";
};
vendorHash = "sha256-pr4KkszyzEl+yLJousx29tr7UZDJf0arEfXBb7eumww=";
meta = with lib; {
description = "Tool to search for in Javascript hidden subdomains and secrets";
mainProgram = "jsubfinder";
homepage = "https://github.com/ThreatUnkown/jsubfinder";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}