rdkafka: 1.8.2 -> 1.9.1

`which` is now needed in the build
This commit is contained in:
zimbatm 2022-07-07 20:09:46 +02:00
parent ebdd91b4e3
commit 92ee92f783
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7

View File

@ -1,17 +1,17 @@
{ lib, stdenv, fetchFromGitHub, zlib, zstd, pkg-config, python3, openssl }:
{ lib, stdenv, fetchFromGitHub, zlib, zstd, pkg-config, python3, openssl, which }:
stdenv.mkDerivation rec {
pname = "rdkafka";
version = "1.8.2";
version = "1.9.1";
src = fetchFromGitHub {
owner = "edenhill";
repo = "librdkafka";
rev = "v${version}";
sha256 = "sha256-YagvXeusHThUo5/1mMs+r+Nr03vAagdnFMkwX3hJsq4=";
sha256 = "sha256-r5H02HLqiixbShgXDEaYEe4OrQK2En5zuLtMOajEIBM=";
};
nativeBuildInputs = [ pkg-config python3 ];
nativeBuildInputs = [ pkg-config python3 which ];
buildInputs = [ zlib zstd openssl ];