mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
Merge pull request #127535 from liff/kafkacat/with-avro
kafkacat: enable Avro message deserialization
This commit is contained in:
commit
ff715e3303
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