nagios: 4.0.8 -> 4.2.3

This update includes many security related fixes.

Version 4.2.0 fixes:
- CVE-2008-4796
- CVE-2013-4214

Version 4.2.2 fixes:
- CVE-2016-9565

Version 4.2.3 fixes:
- CVE-2016-8641

See https://www.nagios.org/projects/nagios-core/history/4x/ for full
detail changes.
This commit is contained in:
Lancelot SIX 2016-11-28 09:55:17 +01:00
parent 83410d9954
commit 5b6d52b4fb
No known key found for this signature in database
GPG key ID: 02E1542BA66FB047

View file

@ -1,16 +1,16 @@
{ stdenv, fetchurl, perl, php, gd, libpng, zlib }:
{ stdenv, fetchurl, perl, php, gd, libpng, zlib, unzip }:
stdenv.mkDerivation rec {
name = "nagios-${version}";
version = "4.0.8";
version = "4.2.3";
src = fetchurl {
url = "mirror://sourceforge/nagios/nagios-4.x/${name}/${name}.tar.gz";
sha256 = "0jyad39wa318613awlnpczrrakvjcipz8qp1mdsig1cp1hjqs9lb";
sha256 = "0p16sm5pkbzf4py30hwzm38194cl23wfzsvkhk4jkf3p1fq7xvl3";
};
patches = [ ./nagios.patch ];
buildInputs = [ php perl gd libpng zlib ];
buildInputs = [ php perl gd libpng zlib unzip ];
configureFlags = [ "--localstatedir=/var/lib/nagios" ];
buildFlags = "all";