biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / kcli / default.nix
blobfa4e887451360890bc24964aff587c41af874eab
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "kcli";
5   version = "1.8.3";
7   src = fetchFromGitHub {
8     owner = "cswank";
9     repo = "kcli";
10     rev = version;
11     sha256 = "0whijr2r2j5bvfy8jgmpxsa0zvwk5kfjlpnkw4za5k35q7bjffls";
12   };
14   vendorHash = null;
16   subPackages = [ "." ];
18   meta = with lib; {
19     description = "A kafka command line browser";
20     homepage = "https://github.com/cswank/kcli";
21     license = licenses.mit;
22     maintainers = with maintainers; [ cswank ];
23     broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check
24   };