Merge pull request #311903 from srhb/squid-exporter

This commit is contained in:
Sandro 2024-06-02 19:28:45 +02:00 committed by GitHub
commit 11bbcb48bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 ];
};
}