xsubfind3r: 0.7.0 -> 0.9.1 (#362714)

This commit is contained in:
Fabian Affolter
2024-12-07 17:37:27 +01:00
committed by GitHub
+8 -7
View File
@@ -1,20 +1,21 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "xsubfind3r";
version = "0.7.0";
version = "0.9.1";
src = fetchFromGitHub {
owner = "hueristiq";
repo = "xsubfind3r";
rev = "refs/tags/${version}";
hash = "sha256-tukynKPcIwDwpH0/SFyif6OGVZrmLVdXfhrFaaVd1d8=";
hash = "sha256-vmcuIa/ebCggLIALbfljJr92GE6veYEl3glm5gH9IZM=";
};
vendorHash = "sha256-0tX/s5a6PPQuEw3BTs6uW9c5OHqXryzIfDNPnQH5sS8=";
vendorHash = "sha256-PFeUO3LWNBF4KPSHBxRIczIMR002Xzydcy6FyjKP60A=";
ldflags = [
"-s"
@@ -23,10 +24,10 @@ buildGoModule rec {
meta = with lib; {
description = "CLI utility to find subdomains from curated passive online sources";
mainProgram = "xsubfind3r";
homepage = "https://github.com/hueristiq/xsubfind3r";
changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "xsubfind3r";
};
}