Unverified Commit 72cc239f authored by Florian Brandes's avatar Florian Brandes
Browse files

zabbix-agent2-plugin-postgresql: 6.4.15 -> 7.0.2

parent cb68f11d
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -2,21 +2,21 @@

buildGoModule rec {
  pname = "zabbix-agent2-plugin-postgresql";
  version = "6.4.15";
  version = "7.0.2";

  src = fetchurl {
    url = "https://cdn.zabbix.com/zabbix-agent2-plugins/sources/postgresql/zabbix-agent2-plugin-postgresql-${version}.tar.gz";
    hash = "sha256-9N2xN7ckfBiwWcI+C4VeHDQVrWEaeKUcjfIw7GU7K9E=";
    hash = "sha256-2+P0a74flxWIpZaII+V04G/szFUrnnIy+f8LfDewcx0=";
  };

  vendorHash = null;

  meta = with lib; {
  meta = {
    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;
    license = if (lib.versions.major version >= "7") then lib.licenses.agpl3Only else lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ gador ];
    platforms = lib.platforms.linux;
  };
}