1 { lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes, which }:
3 stdenv.mkDerivation rec {
8 src = fetchFromGitHub {
12 sha256 = "sha256-pCIYNx0GYPGDYzTLq9h/LbOrJjhKWLAV4gq07Ikl5O4=";
15 nativeBuildInputs = [ pkg-config which ];
17 buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
20 patchShebangs ./configure
24 description = "A generic non-JVM producer and consumer for Apache Kafka";
25 homepage = "https://github.com/edenhill/kcat";
26 license = licenses.bsd2;
27 platforms = platforms.linux ++ platforms.darwin;
28 maintainers = with maintainers; [ nyarly ];