nixpkgs/pkgs/servers/monitoring/zabbix/default.nix
Eelco Dolstra b4bd1c888a * Added Zabbix, a system and network monitoring tool.
svn path=/nixpkgs/trunk/; revision=11963
2008-06-03 21:59:35 +00:00

26 lines
657 B
Nix

{stdenv, fetchurl, enableServer ? false, postgresql ? null, curl ? null}:
stdenv.mkDerivation {
name = "zabbix-1.4.5";
src = fetchurl {
url = mirror://sourceforge/zabbix/zabbix-1.4.5.tar.gz;
sha256 = "1ha82q6rp49rgdfmni73y60kqjy00mfr2bp10mb0gnb0k4v9ppmb";
};
configureFlags = "--enable-agent " +
(if enableServer then ''
--enable-server
--with-pgsql
--with-libcurl
'' else "");
buildInputs = stdenv.lib.optionals enableServer [postgresql curl];
meta = {
description = "An enterprise-class open source distributed monitoring solution";
homepage = http://www.zabbix.com/;
license = "GPL";
};
}