rdkafka: python2 -> python3

This commit is contained in:
ajs124 2021-03-16 18:18:50 +01:00
parent 1af2af99ff
commit 7c7c004af0

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, zlib, perl, pkg-config, python, openssl }:
{ lib, stdenv, fetchFromGitHub, zlib, pkg-config, python3, openssl }:
stdenv.mkDerivation rec {
pname = "rdkafka";
@ -11,9 +11,9 @@ stdenv.mkDerivation rec {
sha256 = "sha256-EoNzxwuLiYi6sMhyqD/x+ku6BKA+i5og4XsUy2JBN0U=";
};
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [ pkg-config python3 ];
buildInputs = [ zlib perl python openssl ];
buildInputs = [ zlib openssl ];
NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";