zabbix: enableParallelBuilding (#441321)

authored by Yohann Boniface and committed by GitHub 14dd3397 e3ba60af

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