Skip to content

Commit

Permalink
urlfinder: init at 0.0.2 (#370000)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff authored Jan 2, 2025
2 parents 9bbd276 + f760839 commit 80beb7a
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 80beb7a

Please sign in to comment.