Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "kcli";
5 version = "1.8.3";
6
7 src = fetchFromGitHub {
8 owner = "cswank";
9 repo = "kcli";
10 rev = version;
11 sha256 = "0whijr2r2j5bvfy8jgmpxsa0zvwk5kfjlpnkw4za5k35q7bjffls";
12 };
13
14 vendorSha256 = "0whqrms5mc7v14p2h1jfvkawm30xaylivijlsghrsaq468qcgg15";
15
16 doCheck = false;
17
18 subPackages = [ "." ];
19
20 meta = with lib; {
21 description = "A kafka command line browser";
22 homepage = "https://github.com/cswank/kcli";
23 license = licenses.mit;
24 maintainers = with maintainers; [ cswank ];
25 };
26}