forked from mirrors/nixpkgs
rdkafka: Build with openssl support.
This commit is contained in:
parent
12ce0db1bf
commit
e821f40c26
|
@ -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 .
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue