Merge pull request #148041 from GRBurst/kafkactl

kafkactl: init at 1.23.1
This commit is contained in:
Stanisław Pitucha 2022-08-29 20:15:21 +10:00 committed by GitHub
commit a8afa28799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View 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;
};
}

View File

@ -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 { };