mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
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.
26 lines
671 B
Nix
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 ];
|
|
};
|
|
}
|