zabbix34: Compile with OpenSSL
Fixes: "TLSConnect" configuration parameter cannot be used: Zabbix agent was compiled without TLS support
This commit is contained in:
parent
4c7c56caf6
commit
9236e9a28d
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user