9236e9a28d
Fixes: "TLSConnect" configuration parameter cannot be used: Zabbix agent was compiled without TLS support
42 lines
949 B
Nix
42 lines
949 B
Nix
{ stdenv, fetchurl, pcre, libiconv, openssl }:
|
|
|
|
|
|
let
|
|
|
|
version = "3.4.8";
|
|
branch = "3.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://netix.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/${version}/zabbix-${version}.tar.gz";
|
|
sha256 = "cec14993d1ec2c9d8c51f6608c9408620f27174db92edc2347bafa7b841ccc07";
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
agent = stdenv.mkDerivation {
|
|
name = "zabbix-agent-${version}";
|
|
|
|
inherit src;
|
|
|
|
configureFlags = [
|
|
"--enable-agent"
|
|
"--with-libpcre=${pcre.dev}"
|
|
"--with-iconv=${libiconv}"
|
|
"--with-openssl=${openssl.dev}"
|
|
];
|
|
buildInputs = [ pcre libiconv openssl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit branch;
|
|
description = "An enterprise-class open source distributed monitoring solution (client-side agent)";
|
|
homepage = https://www.zabbix.com/;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.eelco ];
|
|
platforms = platforms.linux;
|
|
};
|
|
};
|
|
|
|
}
|
|
|