nixpkgs/pkgs/development/tools/kafkacat/default.nix
Olli Helenius cc604f2d90
kafkacat: enable Avro message deserialization
kafkacat supports Avro message deserialization using the
Confluent Schema-Registry if libavro-c and libserdes are available.
2021-06-20 11:54:43 +03:00

31 lines
769 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes }:
stdenv.mkDerivation rec {
pname = "kafkacat";
version = "1.6.0";
src = fetchFromGitHub {
owner = "edenhill";
repo = "kafkacat";
rev = version;
sha256 = "0z3bw00s269myfd1xqksjyznmgp74xfs09xqlq347adsgby3cmfs";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
preConfigure = ''
patchShebangs ./configure
'';
meta = with lib; {
description = "A generic non-JVM producer and consumer for Apache Kafka";
homepage = "https://github.com/edenhill/kafkacat";
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ nyarly ];
};
}