nixpkgs/pkgs/development/tools/kaf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
624 B
Nix
Raw Normal View History

2022-03-28 12:03:00 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kaf";
2024-01-11 04:37:29 +00:00
version = "0.2.7";
2022-03-28 12:03:00 +00:00
src = fetchFromGitHub {
owner = "birdayz";
repo = "kaf";
rev = "v${version}";
2024-01-11 04:37:29 +00:00
hash = "sha256-H21l8TXCl5UH7h0WXnJqFv/rozIzxBKJJcNzfqIATsQ=";
2022-03-28 12:03:00 +00:00
};
2024-01-11 04:37:29 +00:00
vendorHash = "sha256-//16AAQ2NK3yf9BKWECz5Mdy0lYuft9Em5cyM8osans=";
2022-03-28 12:03:00 +00:00
# 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 ];
};
}