Add zabbix 2.0.3
This commit is contained in:
parent
8c5d9098fa
commit
70f9071adf
70
pkgs/servers/monitoring/zabbix/2.0.nix
Normal file
70
pkgs/servers/monitoring/zabbix/2.0.nix
Normal file
@ -0,0 +1,70 @@
|
||||
{ stdenv, fetchurl, pkgconfig, postgresql, curl, openssl, zlib, gettext }:
|
||||
|
||||
let
|
||||
|
||||
version = "2.0.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
||||
sha256 = "0r7pnfdgd3s2zqi2s7zlpjx521m3a6xy3g14q7ykxbz6fsmvxzmn";
|
||||
};
|
||||
|
||||
preConfigure =
|
||||
''
|
||||
substituteInPlace ./configure \
|
||||
--replace " -static" "" \
|
||||
${stdenv.lib.optionalString (stdenv.gcc.libc != null) ''
|
||||
--replace /usr/include/iconv.h ${stdenv.gcc.libc}/include/iconv.h
|
||||
''}
|
||||
'';
|
||||
|
||||
in
|
||||
|
||||
{
|
||||
|
||||
server = stdenv.mkDerivation {
|
||||
name = "zabbix-${version}";
|
||||
|
||||
inherit src preConfigure;
|
||||
|
||||
configureFlags = "--enable-agent --enable-server --with-postgresql --with-libcurl --with-gettext";
|
||||
|
||||
buildInputs = [ pkgconfig postgresql curl openssl zlib ];
|
||||
|
||||
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 = {
|
||||
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 = {
|
||||
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;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
@ -5537,6 +5537,10 @@ let
|
||||
inherit fetchurl stdenv pkgconfig postgresql curl openssl zlib;
|
||||
});
|
||||
|
||||
zabbix20 = recurseIntoAttrs (import ../servers/monitoring/zabbix {
|
||||
inherit fetchurl stdenv pkgconfig postgresql curl openssl zlib gettext;
|
||||
});
|
||||
|
||||
|
||||
### OS-SPECIFIC
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user