zabbix-agent2-plugin-postgresql: init at 6.0.25

Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
2024-01-02 10:40:48 +01:00
parent 977068ebd0
commit c9e6351938
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{ lib, buildGoModule, fetchurl, pkg-config }:
buildGoModule rec {
pname = "zabbix-agent2-plugin-postgresql";
version = "6.0.25";
src = fetchurl {
url = "https://cdn.zabbix.com/zabbix-agent2-plugins/sources/postgresql/zabbix-agent2-plugin-postgresql-${version}.tar.gz";
hash = "sha256-NFohopyUFO2C1k5moM4qkXX0Q9zc8W0Z+WrvZ5lgr1I=";
};
vendorHash = null;
meta = with lib; {
description = "Required tool for Zabbix agent integrated PostgreSQL monitoring";
homepage = "https://www.zabbix.com/integrations/postgresql";
license = licenses.asl20;
maintainers = with maintainers; [ gador ];
};
}

View File

@@ -7911,6 +7911,8 @@ with pkgs;
zabbixctl = callPackage ../tools/misc/zabbixctl { };
zabbix-agent2-plugin-postgresql = callPackage ../tools/misc/zabbix-agent2-plugin-postgresql { };
zee = callPackage ../applications/editors/zee {
inherit (darwin.apple_sdk.frameworks) Security;
};