nixpkgs/pkgs/servers/monitoring/zabbix/default.nix

70 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, postgresql, curl, openssl, zlib }:
let
2014-12-18 12:43:27 +00:00
version = "1.8.22";
2012-10-26 13:20:20 +00:00
src = fetchurl {
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
2014-12-18 12:43:27 +00:00
sha256 = "0cjj3c4j4b9sl3hgh1fck330z9q0gz2k68g227y0paal6k6f54g7";
};
preConfigure =
''
substituteInPlace ./configure \
--replace " -static" "" \
${stdenv.lib.optionalString (stdenv.cc.libc != null) ''
2016-08-31 21:28:32 +00:00
--replace /usr/include/iconv.h ${stdenv.lib.getDev stdenv.cc.libc}/include/iconv.h
''}
'';
in
{
server = stdenv.mkDerivation {
name = "zabbix-${version}";
inherit src preConfigure;
configureFlags = "--enable-agent --enable-server --with-pgsql --with-libcurl";
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 create/data/*.sql $out/share/zabbix/db/data
mkdir -p $out/share/zabbix/db/schema
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 13:20:20 +00:00
agent = stdenv.mkDerivation {
name = "zabbix-agent-${version}";
inherit src preConfigure;
configureFlags = "--enable-agent";
2015-06-10 11:00:11 +00:00
meta = with stdenv.lib; {
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
homepage = http://www.zabbix.com/;
2015-06-10 11:00:11 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.eelco ];
platforms = platforms.linux ++ platforms.darwin;
};
};
2012-10-26 13:20:20 +00:00
}