xsubfind3r: init at 0.3.0

This commit is contained in:
Fabian Affolter 2023-08-19 20:13:58 +02:00
parent efbc68646d
commit c86f727cdd
2 changed files with 33 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };