From 04d027de2c4e084690dd6b7cad760b92475cc2b1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 5 Jul 2025 10:28:08 +0200 Subject: [PATCH] favirecon: init at 1.0.0 Tool to detect technologies, WAF, exposed panels and known services https://github.com/edoardottt/favirecon --- pkgs/by-name/fa/favirecon/package.nix | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/fa/favirecon/package.nix diff --git a/pkgs/by-name/fa/favirecon/package.nix b/pkgs/by-name/fa/favirecon/package.nix new file mode 100644 index 000000000000..ef142c9a0d66 --- /dev/null +++ b/pkgs/by-name/fa/favirecon/package.nix @@ -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"; + }; +}