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

31 lines
731 B
Nix
Raw Normal View History

2017-09-26 01:14:00 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, zlib, rdkafka, yajl }:
stdenv.mkDerivation rec {
pname = "kafkacat";
2017-09-26 01:14:00 +00:00
version = "1.5.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;
sha256 = "0lf2pf3zqncd4a44h0mjm66qnw02k9kvz1hjkah6p6gp7mx3ksjv";
2017-09-26 01:14:00 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib rdkafka yajl ];
2017-11-03 13:04:47 +00:00
preConfigure = ''
patchShebangs ./configure
'';
2017-09-26 01:14:00 +00:00
meta = with stdenv.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 ];
};
}