kafkacat: enable Avro message deserialization
kafkacat supports Avro message deserialization using the Confluent Schema-Registry if libavro-c and libserdes are available.
This commit is contained in:
parent
9770439689
commit
cc604f2d90
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "kafkacat";
|
||||
|
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ zlib rdkafka yajl ];
|
||||
buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs ./configure
|
||||
|
|
Loading…
Reference in a new issue