zabbix34: Compile with OpenSSL

Fixes:

"TLSConnect" configuration parameter cannot be used: Zabbix agent was compiled without TLS support
This commit is contained in:
Tuomas Tynkkynen 2018-08-27 18:38:30 +03:00
parent 4c7c56caf6
commit 9236e9a28d

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pcre, libiconv }: { stdenv, fetchurl, pcre, libiconv, openssl }:
let let
@ -23,8 +23,9 @@ in
"--enable-agent" "--enable-agent"
"--with-libpcre=${pcre.dev}" "--with-libpcre=${pcre.dev}"
"--with-iconv=${libiconv}" "--with-iconv=${libiconv}"
"--with-openssl=${openssl.dev}"
]; ];
buildInputs = [ pcre libiconv ]; buildInputs = [ pcre libiconv openssl ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
inherit branch; inherit branch;