mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
xsubfind3r: init at 0.3.0
This commit is contained in:
parent
efbc68646d
commit
c86f727cdd
31
pkgs/tools/security/xsubfind3r/default.nix
Normal file
31
pkgs/tools/security/xsubfind3r/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "xsubfind3r";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hueristiq";
|
||||
repo = "xsubfind3r";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-DY9/qcE8Ryue6NEWglM1F+xd669DPBIgt743ta+O//4=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-dFjyeIiDGdGTlZoZvsW9cwb+urS0NRxBMFf3+Y+rsAE=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI utility to find subdomains from curated passive online sources";
|
||||
homepage = "https://github.com/hueristiq/xsubfind3r";
|
||||
changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -36615,6 +36615,8 @@ with pkgs;
|
||||
|
||||
xscreensaver = callPackage ../misc/screensavers/xscreensaver { };
|
||||
|
||||
xsubfind3r = callPackage ../tools/security/xsubfind3r { };
|
||||
|
||||
xsuspender = callPackage ../applications/misc/xsuspender { };
|
||||
|
||||
xss-lock = callPackage ../misc/screensavers/xss-lock { };
|
||||
|
Loading…
Reference in New Issue
Block a user