nixpkgs/pkgs/development/tools/kcat/default.nix
Souvik Sen 01a85ce48b kcat(previously kafkacat): 1.6.0 -> 1.7.0
Fixed the 1.7.0 build and renamed the package per upstream.
(3fc21aa1e9)
2021-10-07 23:25:00 -04:00

31 lines
769 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes, which }:
stdenv.mkDerivation rec {
pname = "kcat";
version = "1.7.0";
src = fetchFromGitHub {
owner = "edenhill";
repo = "kcat";
rev = version;
sha256 = "sha256-koDhj/RQc9fhfqjrJylhURw6tppPELhLlBGbNVJsii8=";
};
nativeBuildInputs = [ pkg-config which ];
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/kcat";
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ nyarly ];
};
}