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

31 lines
769 B
Nix
Raw Normal View History

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