nixpkgs/pkgs/development/tools/kafkacat/default.nix

31 lines
769 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, zlib, rdkafka, yajl, avro-c, libserdes }:
2017-09-26 01:14:00 +00:00
stdenv.mkDerivation rec {
pname = "kafkacat";
2017-09-26 01:14:00 +00:00
2020-07-24 03:17:16 +00:00
version = "1.6.0";
2017-09-26 01:14:00 +00:00
src = fetchFromGitHub {
owner = "edenhill";
repo = "kafkacat";
2019-09-08 23:38:31 +00:00
rev = version;
2020-07-24 03:17:16 +00:00
sha256 = "0z3bw00s269myfd1xqksjyznmgp74xfs09xqlq347adsgby3cmfs";
2017-09-26 01:14:00 +00:00
};
nativeBuildInputs = [ pkg-config ];
2017-09-26 01:14:00 +00:00
buildInputs = [ zlib rdkafka yajl avro-c libserdes ];
2017-09-26 01:14:00 +00:00
2017-11-03 13:04:47 +00:00
preConfigure = ''
patchShebangs ./configure
'';
meta = with lib; {
2017-09-26 01:14:00 +00:00
description = "A generic non-JVM producer and consumer for Apache Kafka";
homepage = "https://github.com/edenhill/kafkacat";
2017-09-26 01:14:00 +00:00
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ nyarly ];
};
}