Merge pull request #116542 from helsinki-systems/rdkafka-py3
rdkafka: python2 -> python3
This commit is contained in:
commit
bb6f226f87
1 changed files with 3 additions and 3 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue