nixpkgs/pkgs/tools/security/xsubfind3r/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
763 B
Nix
Raw Normal View History

2023-08-19 18:13:58 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "xsubfind3r";
2023-12-25 06:00:23 +00:00
version = "0.7.0";
2023-08-19 18:13:58 +00:00
src = fetchFromGitHub {
owner = "hueristiq";
repo = "xsubfind3r";
rev = "refs/tags/${version}";
2023-12-25 06:00:23 +00:00
hash = "sha256-tukynKPcIwDwpH0/SFyif6OGVZrmLVdXfhrFaaVd1d8=";
2023-08-19 18:13:58 +00:00
};
2023-12-25 06:00:23 +00:00
vendorHash = "sha256-0tX/s5a6PPQuEw3BTs6uW9c5OHqXryzIfDNPnQH5sS8=";
2023-08-19 18:13:58 +00:00
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "CLI utility to find subdomains from curated passive online sources";
mainProgram = "xsubfind3r";
2023-08-19 18:13:58 +00:00
homepage = "https://github.com/hueristiq/xsubfind3r";
changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}