2010-02-15 15:20:28 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, postgresql, curl, openssl, zlib }:
|
2008-06-03 23:59:35 +02:00
|
|
|
|
2010-02-15 15:20:28 +01:00
|
|
|
let
|
2008-06-03 23:59:35 +02:00
|
|
|
|
2012-10-26 15:20:20 +02:00
|
|
|
version = "1.8.15";
|
|
|
|
|
2008-06-03 23:59:35 +02:00
|
|
|
src = fetchurl {
|
2010-02-15 15:20:28 +01:00
|
|
|
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
2012-10-26 15:20:20 +02:00
|
|
|
sha256 = "0358syx6vck6l8j9wwlsb78faivh4qxrgy3jlkmjqr99xi6h3r3f";
|
2008-06-03 23:59:35 +02:00
|
|
|
};
|
|
|
|
|
2010-02-23 13:17:23 +01: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 15:20:28 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
server = stdenv.mkDerivation {
|
|
|
|
name = "zabbix-${version}";
|
|
|
|
|
2010-02-23 13:17:23 +01:00
|
|
|
inherit src preConfigure;
|
2010-02-15 15:20:28 +01:00
|
|
|
|
|
|
|
configureFlags = "--enable-agent --enable-server --with-pgsql --with-libcurl";
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig postgresql curl openssl zlib ];
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/share/zabbix
|
2010-02-15 15:20:28 +01:00
|
|
|
cp -prvd frontends/php $out/share/zabbix/php
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/share/zabbix/db/data
|
2010-02-15 15:20:28 +01:00
|
|
|
cp -prvd create/data/*.sql $out/share/zabbix/db/data
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/share/zabbix/db/schema
|
2010-02-15 15:20:28 +01: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 15:20:20 +02:00
|
|
|
|
2010-02-15 15:20:28 +01:00
|
|
|
agent = stdenv.mkDerivation {
|
|
|
|
name = "zabbix-agent-${version}";
|
|
|
|
|
2010-02-23 13:17:23 +01:00
|
|
|
inherit src preConfigure;
|
2010-02-15 15:20:28 +01: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 ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2008-06-03 23:59:35 +02:00
|
|
|
};
|
2012-10-26 15:20:20 +02:00
|
|
|
|
2008-06-03 23:59:35 +02:00
|
|
|
}
|