Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 26 lines 649 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "kaf"; 5 version = "0.2.8"; 6 7 src = fetchFromGitHub { 8 owner = "birdayz"; 9 repo = "kaf"; 10 rev = "v${version}"; 11 hash = "sha256-12xPBBLV0jtQQI/inNlWTFBZtYBF0GF1GoD1kv1/thQ="; 12 }; 13 14 vendorHash = "sha256-otKz8ECSb2N3vwU5c1+u7zGvXU4iRvQWWggw9WwG78c="; 15 16 # Many tests require a running Kafka instance 17 doCheck = false; 18 19 meta = with lib; { 20 description = "Modern CLI for Apache Kafka, written in Go"; 21 mainProgram = "kaf"; 22 homepage = "https://github.com/birdayz/kaf"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ zarelit ]; 25 }; 26}