prometheus-squid-exporter: init at 1.11.0

This commit is contained in:
Sarah Brofeldt 2024-05-15 12:17:14 +02:00
parent 2057814051
commit 4e39b22db3

View File

@ -0,0 +1,22 @@
{ lib, buildGoModule, fetchFromGitHub, }:
buildGoModule rec {
pname = "squid-exporter";
version = "1.11.0";
src = fetchFromGitHub {
owner = "boynux";
repo = "squid-exporter";
rev = "v${version}";
sha256 = "sha256-43f6952IqUHoB5CN0p5R5J/sMKbTe2msF9FGqykwMBo=";
};
vendorHash = null;
meta = {
description = "Squid Prometheus exporter";
homepage = "https://github.com/boynux/squid-exporter";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ srhb ];
};
}