2014-01-07 12:11:32 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, postgresql, curl, openssl, zlib, gettext
|
2014-11-03 15:51:09 +00:00
|
|
|
, net_snmp , libssh2, openldap
|
|
|
|
, enableJabber ? false, minmay ? null
|
|
|
|
, enableSnmp ? false
|
|
|
|
, enableSsh ? false
|
|
|
|
, enableLdap ? false
|
|
|
|
}:
|
2014-01-07 12:11:32 +00:00
|
|
|
|
|
|
|
assert enableJabber -> minmay != null;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
zabbix: Update from 2.2.1 to 2.2.2
Potentially fixes CVE-2012-0031, CVE-2012-0053, CVE-2012-0883,
CVE-2012-2687, CVE-2012-3499, CVE-2012-4558, CVE-2013-1862,
CVE-2013-1896, CVE-2013-2249, CVE-2013-1034, CVE-2013-5143.
2014-02-13 17:31:37 +00:00
|
|
|
version = "2.2.2";
|
2014-01-08 16:06:18 +00:00
|
|
|
branch = "2.2";
|
2014-01-07 12:11:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
zabbix: Update from 2.2.1 to 2.2.2
Potentially fixes CVE-2012-0031, CVE-2012-0053, CVE-2012-0883,
CVE-2012-2687, CVE-2012-3499, CVE-2012-4558, CVE-2013-1862,
CVE-2013-1896, CVE-2013-2249, CVE-2013-1034, CVE-2013-5143.
2014-02-13 17:31:37 +00:00
|
|
|
sha256 = "1gmjbjmajdllzd7akihb5kg4l2gf0ii9c16fq8mlla37sshzj3p0";
|
2014-01-07 12:11:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace " -static" "" \
|
2014-12-17 18:11:30 +00:00
|
|
|
${stdenv.lib.optionalString (stdenv.cc.libc != null) ''
|
|
|
|
--replace /usr/include/iconv.h ${stdenv.cc.libc}/include/iconv.h
|
2014-01-07 12:11:32 +00:00
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
recurseForDerivations = true;
|
|
|
|
|
|
|
|
server = stdenv.mkDerivation {
|
|
|
|
name = "zabbix-${version}";
|
|
|
|
|
|
|
|
inherit src preConfigure;
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-agent"
|
|
|
|
"--enable-server"
|
|
|
|
"--with-postgresql"
|
|
|
|
"--with-libcurl"
|
|
|
|
"--with-gettext"
|
2014-11-03 15:51:09 +00:00
|
|
|
]
|
|
|
|
++ stdenv.lib.optional enableJabber "--with-jabber=${minmay}"
|
|
|
|
++ stdenv.lib.optional enableSnmp "--with-net-snmp"
|
|
|
|
++ stdenv.lib.optional enableSsh "--with-ssh2=${libssh2}"
|
|
|
|
++ stdenv.lib.optional enableLdap "--with-ldap=${openldap}";
|
2014-01-07 12:11:32 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e 's/iksemel/minmay/g' configure src/libs/zbxmedia/jabber.c
|
|
|
|
sed -i \
|
|
|
|
-e '/^static ikstransport/,/}/d' \
|
|
|
|
-e 's/iks_connect_with\(.*\), &zbx_iks_transport/mmay_connect_via\1/' \
|
|
|
|
-e 's/iks/mmay/g' -e 's/IKS/MMAY/g' src/libs/zbxmedia/jabber.c
|
|
|
|
'';
|
|
|
|
|
2014-11-03 15:51:09 +00:00
|
|
|
buildInputs = [ pkgconfig postgresql curl openssl zlib ]
|
|
|
|
++ stdenv.lib.optional enableSnmp net_snmp
|
|
|
|
++ stdenv.lib.optional enableSsh libssh2
|
|
|
|
++ stdenv.lib.optional enableLdap openldap;
|
2014-01-07 12:11:32 +00:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mkdir -p $out/share/zabbix
|
|
|
|
cp -prvd frontends/php $out/share/zabbix/php
|
|
|
|
mkdir -p $out/share/zabbix/db/data
|
|
|
|
cp -prvd database/postgresql/data.sql $out/share/zabbix/db/data/data.sql
|
|
|
|
cp -prvd database/postgresql/images.sql $out/share/zabbix/db/data/images_pgsql.sql
|
|
|
|
mkdir -p $out/share/zabbix/db/schema
|
|
|
|
cp -prvd database/postgresql/schema.sql $out/share/zabbix/db/schema/postgresql.sql
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2014-01-08 16:06:18 +00:00
|
|
|
inherit branch;
|
2014-01-07 12:11:32 +00:00
|
|
|
description = "An enterprise-class open source distributed monitoring solution";
|
|
|
|
homepage = http://www.zabbix.com/;
|
|
|
|
license = "GPL";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
agent = stdenv.mkDerivation {
|
|
|
|
name = "zabbix-agent-${version}";
|
|
|
|
|
|
|
|
inherit src preConfigure;
|
|
|
|
|
|
|
|
configureFlags = "--enable-agent";
|
|
|
|
|
|
|
|
meta = {
|
2014-01-08 16:06:18 +00:00
|
|
|
inherit branch;
|
2014-01-07 12:11:32 +00:00
|
|
|
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
|
|
|
|
homepage = http://www.zabbix.com/;
|
|
|
|
license = "GPL";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|