Merge pull request #148041 from GRBurst/kafkactl
kafkactl: init at 1.23.1
This commit is contained in:
commit
a8afa28799
32
pkgs/development/tools/kafkactl/default.nix
Normal file
32
pkgs/development/tools/kafkactl/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kafkactl";
|
||||
version = "1.23.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "deviceinsight";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1zg0lar16axi25mnmdbdyrm876rbc328kq1yvhjlnzskmkhzjsg2";
|
||||
};
|
||||
|
||||
vendorSha256 = "0pnnrpyg40lb54h0k36c4iibapzlh54cdvc4mampmj13kphk3zzg";
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Command Line Tool for managing Apache Kafka";
|
||||
longDescription = ''
|
||||
A command-line interface for interaction with Apache Kafka.
|
||||
Features:
|
||||
- command auto-completion for bash, zsh, fish shell including dynamic completion for e.g. topics or consumer groups
|
||||
- support for avro schemas
|
||||
- Configuration of different contexts
|
||||
- directly access kafka clusters inside your kubernetes cluster
|
||||
'';
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ grburst ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -16451,6 +16451,8 @@ with pkgs;
|
||||
|
||||
kati = callPackage ../development/tools/build-managers/kati { };
|
||||
|
||||
kafkactl = callPackage ../development/tools/kafkactl { };
|
||||
|
||||
kcat = callPackage ../development/tools/kcat { };
|
||||
|
||||
kcc = libsForQt5.callPackage ../applications/graphics/kcc { };
|
||||
|
Loading…
Reference in New Issue
Block a user