28b6fb61e6
This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
70 lines
1.8 KiB
Nix
70 lines
1.8 KiB
Nix
{ stdenv, fetchurl, pkgconfig, postgresql, curl, openssl, zlib }:
|
|
|
|
let
|
|
|
|
version = "1.8.22";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
|
|
sha256 = "0cjj3c4j4b9sl3hgh1fck330z9q0gz2k68g227y0paal6k6f54g7";
|
|
};
|
|
|
|
preConfigure =
|
|
''
|
|
substituteInPlace ./configure \
|
|
--replace " -static" "" \
|
|
${stdenv.lib.optionalString (stdenv.cc.libc != null) ''
|
|
--replace /usr/include/iconv.h ${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;
|
|
};
|
|
};
|
|
|
|
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.linux ++ stdenv.lib.platforms.darwin;
|
|
};
|
|
};
|
|
|
|
}
|