Merge pull request #250230 from fabaff/xsubfind3r

xsubfind3r: init at 0.3.0

authored by Fabian Affolter and committed by GitHub a4832e49 fc224ddd

+33
+31
pkgs/tools/security/xsubfind3r/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "xsubfind3r"; 8 + version = "0.3.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "hueristiq"; 12 + repo = "xsubfind3r"; 13 + rev = "refs/tags/${version}"; 14 + hash = "sha256-DY9/qcE8Ryue6NEWglM1F+xd669DPBIgt743ta+O//4="; 15 + }; 16 + 17 + vendorHash = "sha256-dFjyeIiDGdGTlZoZvsW9cwb+urS0NRxBMFf3+Y+rsAE="; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "CLI utility to find subdomains from curated passive online sources"; 26 + homepage = "https://github.com/hueristiq/xsubfind3r"; 27 + changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 36665 36665 36666 36666 xscreensaver = callPackage ../misc/screensavers/xscreensaver { }; 36667 36667 36668 + xsubfind3r = callPackage ../tools/security/xsubfind3r { }; 36669 + 36668 36670 xsuspender = callPackage ../applications/misc/xsuspender { }; 36669 36671 36670 36672 xss-lock = callPackage ../misc/screensavers/xss-lock { };