favirecon: init at 1.0.0 (#422654)

This commit is contained in:
Fabian Affolter
2025-07-06 09:15:12 +02:00
committed by GitHub
+33
View File
@@ -0,0 +1,33 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "favirecon";
version = "1.0.0";
src = fetchFromGitHub {
owner = "edoardottt";
repo = "favirecon";
tag = "v${version}";
hash = "sha256-nL5W4i4NJEjhkiO83hL9qK4XCIT5fnwRshyDkU1fASk=";
};
vendorHash = "sha256-PRLXVuqth9z0FkaMqUlEue1BFTI37oiobKOg3JvBYGU=";
ldflags = [
"-s"
"-w"
];
meta = {
description = "Tool to detect technologies, WAF, exposed panels and known services";
homepage = "https://github.com/edoardottt/favirecon";
changelog = "https://github.com/edoardottt/favirecon/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "favirecon";
};
}