zabbix: enableParallelBuilding (#441321)

authored by Yohann Boniface and committed by GitHub 14dd3397 e3ba60af

+7 -1
+2
pkgs/servers/monitoring/zabbix/agent.nix
··· 20 20 inherit hash; 21 21 }; 22 22 23 + enableParallelBuilding = true; 24 + 23 25 nativeBuildInputs = [ pkg-config ]; 24 26 buildInputs = [ 25 27 libiconv
+2
pkgs/servers/monitoring/zabbix/proxy.nix
··· 53 53 inherit hash; 54 54 }; 55 55 56 + enableParallelBuilding = true; 57 + 56 58 nativeBuildInputs = [ 57 59 pkg-config 58 60 ]
+3 -1
pkgs/servers/monitoring/zabbix/server.nix
··· 48 48 inherit hash; 49 49 }; 50 50 51 + enableParallelBuilding = true; 52 + 51 53 nativeBuildInputs = [ 52 54 autoreconfHook 53 55 pkg-config ··· 59 61 libiconv 60 62 libxml2 61 63 openssl 62 - (if (lib.versions.major version >= "7" && lib.versions.minor version >= "4") then pcre2 else pcre) 64 + (if lib.versionAtLeast version "7.4" then pcre2 else pcre) 63 65 zlib 64 66 ] 65 67 ++ optional odbcSupport unixODBC