ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / za / zabbix-agent2-plugin-postgresql / package.nix
blobda017d4d42dfc36e8a6067fa9fc4e2efaea833e4
2   lib,
3   buildGoModule,
4   fetchurl,
5 }:
7 buildGoModule rec {
8   pname = "zabbix-agent2-plugin-postgresql";
9   version = "7.0.4";
11   src = fetchurl {
12     url = "https://cdn.zabbix.com/zabbix-agent2-plugins/sources/postgresql/zabbix-agent2-plugin-postgresql-${version}.tar.gz";
13     hash = "sha256-BgCdy+0VVe2+NTwZII3ASaxGGAT7zGiQUppI9whJtQ8=";
14   };
16   vendorHash = null;
18   meta = {
19     description = "Required tool for Zabbix agent integrated PostgreSQL monitoring";
20     mainProgram = "postgresql";
21     homepage = "https://www.zabbix.com/integrations/postgresql";
22     license =
23       if (lib.versions.major version >= "7") then lib.licenses.agpl3Only else lib.licenses.gpl2Plus;
24     maintainers = with lib.maintainers; [ gador ];
25     platforms = lib.platforms.linux;
26   };