Added Overlays for gs1200 exporter and oicwarden

This commit is contained in:
2026-05-19 20:10:53 +02:00
parent 5ae6b29e15
commit d23d7dc79e
8 changed files with 50 additions and 35 deletions
+24
View File
@@ -0,0 +1,24 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gs1200-exporter";
version = "2.11.12";
src = fetchFromGitHub {
owner = "robinelfrink";
repo = "gs1200-exporter";
rev = "v${version}";
hash = "sha256-8s2VgaqYXp9PN2oNU/sWpjQjDPSWolbWEVSZcx9Lh3M=";
};
vendorHash = "sha256-204bFaywOolKVNoeH/w72Ba1PYAVgQawEmlaEXgRaRY=";
meta = {
description = "Prometheus exporter for Zyxel GS1200 switches";
homepage = "https://github.com/robinelfrink/gs1200-exporter";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ DerGrumpf ];
mainProgram = "gs1200-exporter";
platforms = lib.platforms.all;
};
}