2010-02-15 14:20:28 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, postgresql, curl, openssl, zlib }:
|
2008-06-03 22:59:35 +01:00
|
|
|
|
2010-02-15 14:20:28 +00:00
|
|
|
let
|
2008-06-03 22:59:35 +01:00
|
|
|
|
2014-02-13 17:30:50 +00:00
|
|
|
version = "1.8.20";
|
2012-10-26 14:20:20 +01:00
|
|
|
|
2008-06-03 22:59:35 +01:00
|
|
|
src = fetchurl {
|
2010-02-15 14:20:28 +00:00
|
|
|
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
2014-02-13 17:30:50 +00:00
|
|
|
sha256 = "0psdvzg5c3yhdqqmy5m1b0j3nrvcshjywhl56igy0j8vj16zxi86";
|
2008-06-03 22:59:35 +01:00
|
|
|
};
|
|
|
|
|
2010-02-23 12:17:23 +00:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
substituteInPlace ./configure \
|
|
|
|
--replace " -static" "" \
|
|
|
|
${stdenv.lib.optionalString (stdenv.gcc.libc != null) ''
|
|
|
|
--replace /usr/include/iconv.h ${stdenv.gcc.libc}/include/iconv.h
|
|
|
|
''}
|
|
|
|
'';
|
|
|
|
|
2010-02-15 14:20:28 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
server = stdenv.mkDerivation {
|
|
|
|
name = "zabbix-${version}";
|
|
|
|
|
2010-02-23 12:17:23 +00:00
|
|
|
inherit src preConfigure;
|
2010-02-15 14:20:28 +00:00
|
|
|
|
|
|
|
configureFlags = "--enable-agent --enable-server --with-pgsql --with-libcurl";
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig postgresql curl openssl zlib ];
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/zabbix
|
2010-02-15 14:20:28 +00:00
|
|
|
cp -prvd frontends/php $out/share/zabbix/php
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/zabbix/db/data
|
2010-02-15 14:20:28 +00:00
|
|
|
cp -prvd create/data/*.sql $out/share/zabbix/db/data
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/zabbix/db/schema
|
2010-02-15 14:20:28 +00:00
|
|
|
cp -prvd create/schema/*.sql $out/share/zabbix/db/schema
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
2012-10-26 14:20:20 +01:00
|
|
|
|
2010-02-15 14:20:28 +00:00
|
|
|
agent = stdenv.mkDerivation {
|
|
|
|
name = "zabbix-agent-${version}";
|
|
|
|
|
2010-02-23 12:17:23 +00:00
|
|
|
inherit src preConfigure;
|
2010-02-15 14:20:28 +00:00
|
|
|
|
|
|
|
configureFlags = "--enable-agent";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
|
|
|
|
homepage = http://www.zabbix.com/;
|
|
|
|
license = "GPL";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2013-11-04 19:25:20 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
2010-02-15 14:20:28 +00:00
|
|
|
};
|
2008-06-03 22:59:35 +01:00
|
|
|
};
|
2012-10-26 14:20:20 +01:00
|
|
|
|
2008-06-03 22:59:35 +01:00
|
|
|
}
|