forked from mirrors/nixpkgs
zabbix: Apply fix for a SQL injection bug
https://support.zabbix.com/browse/ZBX-7091 CVE-2013-5743
This commit is contained in:
parent
c7149103eb
commit
e5ebb59e1d
|
@ -31,6 +31,14 @@ in
|
||||||
|
|
||||||
inherit src preConfigure;
|
inherit src preConfigure;
|
||||||
|
|
||||||
|
patchFlags = "-p0";
|
||||||
|
patches =
|
||||||
|
[ (fetchurl {
|
||||||
|
url = "https://support.zabbix.com/secure/attachment/24449/ZBX-7091-2.0.8.patch";
|
||||||
|
sha256 = "1rlk3812dd12imk29i0fw6bzpgi44a8231kiq3bl5yryx18qh580";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--enable-agent"
|
"--enable-agent"
|
||||||
"--enable-server"
|
"--enable-server"
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "1.8.17";
|
version = "1.8.18rc1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
||||||
sha256 = "0c2dpx7ncahp161p6zymrrxwyn3algkfzh6dz7x2j0wsnvb6lrp2";
|
sha256 = "1pa4656dcl5r7r36nwk05zy38z49np6j717wjmmd8sqlz6szw01n";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure =
|
preConfigure =
|
||||||
|
|
Loading…
Reference in a new issue