Unverified Commit 7c05cf6b authored by Florian Brandes's avatar Florian Brandes
Browse files

zabbix-agent2-plugin-postgresql: format

parent 72cc239f
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchurl }:
{
  lib,
  buildGoModule,
  fetchurl,
}:

buildGoModule rec {
  pname = "zabbix-agent2-plugin-postgresql";
@@ -15,7 +19,8 @@ buildGoModule rec {
    description = "Required tool for Zabbix agent integrated PostgreSQL monitoring";
    mainProgram = "postgresql";
    homepage = "https://www.zabbix.com/integrations/postgresql";
    license = if (lib.versions.major version >= "7") then lib.licenses.agpl3Only else lib.licenses.gpl2Plus;
    license =
      if (lib.versions.major version >= "7") then lib.licenses.agpl3Only else lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [ gador ];
    platforms = lib.platforms.linux;
  };