Skip to content

Commit

Permalink
urlfinder: init at 0.0.2
Browse files Browse the repository at this point in the history
Tool for passively gathering URLs without active scanning

https://github.com/projectdiscovery/urlfinder
  • Loading branch information
fabaff committed Jan 1, 2025
1 parent b223c36 commit f760839
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/ur/urlfinder/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:

buildGoModule rec {
pname = "urlfinder";
version = "0.0.2";

src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "urlfinder";
rev = "refs/tags/v${version}";
hash = "sha256-hORZzeGNcRTcFsvY8pfs8f1JNpdTJjMdO/lJHR83DfY=";
};

vendorHash = "sha256-Wu9itQfcrwWuzRHtTKk+lF7n6eIzSfATWtI+8xLQQsI=";

ldflags = [
"-s"
"-w"
];

meta = {
description = "Tool for passively gathering URLs without active scanning";
homepage = "https://github.com/projectdiscovery/urlfinder";
changelog = "https://github.com/projectdiscovery/urlfinder/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "urlfinder";
};
}

0 comments on commit f760839

Please sign in to comment.