nixpkgs/pkgs/by-name/za/zabbix-agent2-plugin-postgresql/package.nix
nixpkgs-merge-bot[bot] 84a2a1f9a1
Merge pull request #294036 from r-ryantm/auto-update/zabbix-agent2-plugin-postgresql
zabbix-agent2-plugin-postgresql: 6.0.25 -> 6.4.12
2024-03-31 14:53:06 +00:00

23 lines
695 B
Nix

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