biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / xsubfind3r / default.nix
blob976624c16b608151127560c71c12456b4df05622
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "xsubfind3r";
8   version = "0.7.0";
10   src = fetchFromGitHub {
11     owner = "hueristiq";
12     repo = "xsubfind3r";
13     rev = "refs/tags/${version}";
14     hash = "sha256-tukynKPcIwDwpH0/SFyif6OGVZrmLVdXfhrFaaVd1d8=";
15   };
17   vendorHash = "sha256-0tX/s5a6PPQuEw3BTs6uW9c5OHqXryzIfDNPnQH5sS8=";
19   ldflags = [
20     "-s"
21     "-w"
22   ];
24   meta = with lib; {
25     description = "CLI utility to find subdomains from curated passive online sources";
26     mainProgram = "xsubfind3r";
27     homepage = "https://github.com/hueristiq/xsubfind3r";
28     changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}";
29     license = licenses.mit;
30     maintainers = with maintainers; [ fab ];
31   };