Unverified Commit 02158561 authored by Artturin's avatar Artturin Committed by GitHub
Browse files

rdkafka: Add curl dependency for OAuth support. (#348993)

parents 123b4aa0 ddaa1751
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, zlib, zstd, pkg-config, python3, openssl, which }:
{ lib, stdenv, fetchFromGitHub, zlib, zstd, pkg-config, python3, openssl, which, curl }:

stdenv.mkDerivation rec {
  pname = "rdkafka";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {

  nativeBuildInputs = [ pkg-config python3 which ];

  buildInputs = [ zlib zstd openssl ];
  buildInputs = [ zlib zstd openssl curl ];

  env.NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";