rdkafka: python2 -> python3
This commit is contained in:
parent
1af2af99ff
commit
7c7c004af0
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 {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rdkafka";
|
pname = "rdkafka";
|
||||||
|
@ -11,9 +11,9 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "sha256-EoNzxwuLiYi6sMhyqD/x+ku6BKA+i5og4XsUy2JBN0U=";
|
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";
|
NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue