forked from mirrors/nixpkgs
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
|
||||
|
@ -23,8 +23,9 @@ in
|
|||
"--enable-agent"
|
||||
"--with-libpcre=${pcre.dev}"
|
||||
"--with-iconv=${libiconv}"
|
||||
"--with-openssl=${openssl.dev}"
|
||||
];
|
||||
buildInputs = [ pcre libiconv ];
|
||||
buildInputs = [ pcre libiconv openssl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit branch;
|
||||
|
|
Loading…
Reference in a new issue