Unverified Commit de0f59ea authored by David Costa's avatar David Costa Committed by GitHub
Browse files

kaf: init at 0.1.44 (#164175)

parent 7c471641
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "kaf";
  version = "0.1.44";

  src = fetchFromGitHub {
    owner = "birdayz";
    repo = "kaf";
    rev = "v${version}";
    sha256 = "sha256-gKg/iESUXS6l3v5ovdvvrfpvaUzahPtqh0/DH5OpXoY=";
  };

  vendorSha256 = "sha256-5WzREsQdcp9lelKUEXw+nHeemHBDsKrvRcG9v+qln/E=";

  # Many tests require a running Kafka instance
  doCheck = false;

  meta = with lib; {
    description = "Modern CLI for Apache Kafka, written in Go";
    homepage = "https://github.com/birdayz/kaf";
    license = licenses.asl20;
    maintainers = with maintainers; [ zarelit ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -34940,6 +34940,8 @@ with pkgs;
  sentencepiece = callPackage ../development/libraries/sentencepiece {};
  kaf = callPackage ../development/tools/kaf { };
  kcli = callPackage ../development/tools/kcli { };
  pxlib = callPackage ../development/libraries/pxlib {};