rdkafka: Build with openssl support.

This commit is contained in:
Shea Levy
2018-04-19 09:20:18 -04:00
parent 12ce0db1bf
commit e821f40c26

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, zlib, perl, pkgconfig, python }:
{ stdenv, fetchFromGitHub, zlib, perl, pkgconfig, python, openssl }:
stdenv.mkDerivation rec {
name = "rdkafka-${version}";
@@ -12,12 +12,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib perl python ];
buildInputs = [ zlib perl python openssl ];
NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";
configureFlags = stdenv.lib.optionals stdenv.isDarwin [ "--disable-ssl" ];
postPatch = ''
patchShebangs .
'';