zabbix: 4.4.8 -> 5.0.2

This commit is contained in:
Aaron Andersen
2020-08-18 10:30:23 -04:00
parent 927bd3e665
commit 5e630bf5d3
5 changed files with 43 additions and 6 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
generic: {
v44 = generic {
version = "4.4.8";
sha256 = "0l9n4l5179lf90krv1kb0lraipj7q4hyba6r48n6rj2zqx2j4mn0";
v50 = generic {
version = "5.0.2";
sha256 = "1cnns7ixqi7ank3cbvcs7d8rb5zh9qiqbmgivazr83jnz81qg46w";
};
v40 = generic {
+1 -1
View File
@@ -18,7 +18,7 @@ import ./versions.nix ({ version, sha256 }:
installPhase = ''
mkdir -p $out/share/zabbix/
cp -a frontends/php/. $out/share/zabbix/
cp -a ${if stdenv.lib.versionAtLeast version "5.0.0" then "ui/." else "frontends/php/."} $out/share/zabbix/
cp ${phpConfig} $out/share/zabbix/conf/zabbix.conf.php
'';