Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kafkactl";
|
|
version = "5.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deviceinsight";
|
|
repo = "kafkactl";
|
|
tag = "v${version}";
|
|
hash = "sha256-YJpRXCTI0Mwi4Zxeex8oxgzElk7l8Qus75lR42/wSww=";
|
|
};
|
|
|
|
vendorHash = "sha256-sVvEHMXpjas+l93IZfAChDX5eDm0lkUNCr5r1JaVQ9I=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/deviceinsight/kafkactl";
|
|
changelog = "https://github.com/deviceinsight/kafkactl/blob/v${version}/CHANGELOG.md";
|
|
description = "Command Line Tool for managing Apache Kafka";
|
|
mainProgram = "kafkactl";
|
|
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 = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ grburst ];
|
|
};
|
|
}
|