{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "kafkactl"; version = "4.0.0"; src = fetchFromGitHub { owner = "deviceinsight"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-GtveC2W9y/mBuiZjpxCXjCE6WO0ub4wX85Is6MUTvlw="; }; vendorHash = "sha256-B7kP1ksH7t/1PQrI8mSgIEGdH02RhgN4A1z4S0UJG/g="; doCheck = false; meta = with lib; { 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 = licenses.asl20; maintainers = with maintainers; [ grburst ]; }; }