depot/third_party/nixpkgs/pkgs/by-name/za/zabbix-agent2-plugin-postgresql/package.nix

23 lines
695 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchurl, pkg-config }:
buildGoModule rec {
pname = "zabbix-agent2-plugin-postgresql";
version = "6.4.14";
src = fetchurl {
url = "https://cdn.zabbix.com/zabbix-agent2-plugins/sources/postgresql/zabbix-agent2-plugin-postgresql-${version}.tar.gz";
hash = "sha256-5+1RCJOAcnDg+aHWjzeI+5QImJQinkz7KKQ9vM55uzQ=";
};
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;
};
}