mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
kafkacat: init at 1.3.1
This commit is contained in:
parent
65dd753912
commit
b62012fe2d
26
pkgs/development/tools/kafkacat/default.nix
Normal file
26
pkgs/development/tools/kafkacat/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, zlib, rdkafka, yajl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kafkacat-${version}";
|
||||
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "edenhill";
|
||||
repo = "kafkacat";
|
||||
rev = "${version}";
|
||||
sha256 = "1fgs04rclgfwri6vd9lj0mw545nmscav9p6kh7r28k5ap2g0gak5";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ zlib rdkafka yajl ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -7256,6 +7256,8 @@ with pkgs;
|
||||
|
||||
jenkins-job-builder = pythonPackages.jenkins-job-builder;
|
||||
|
||||
kafkacat = callPackage ../development/tools/kafkacat { };
|
||||
|
||||
kati = callPackage ../development/tools/build-managers/kati { };
|
||||
|
||||
kconfig-frontends = callPackage ../development/tools/misc/kconfig-frontends {
|
||||
|
Loading…
Reference in New Issue
Block a user