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

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

26 lines
614 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-01-02 00:15:38 +00:00
buildGoModule rec {
pname = "kcli";
2020-02-07 11:56:57 +00:00
version = "1.8.3";
2020-01-02 00:15:38 +00:00
src = fetchFromGitHub {
owner = "cswank";
repo = "kcli";
rev = version;
2020-02-07 11:56:57 +00:00
sha256 = "0whijr2r2j5bvfy8jgmpxsa0zvwk5kfjlpnkw4za5k35q7bjffls";
2020-01-02 00:15:38 +00:00
};
vendorHash = null;
2020-01-02 00:15:38 +00:00
subPackages = [ "." ];
meta = with lib; {
2020-01-02 00:15:38 +00:00
description = "A kafka command line browser";
homepage = "https://github.com/cswank/kcli";
license = licenses.mit;
maintainers = with maintainers; [ cswank ];
broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check
2020-01-02 00:15:38 +00:00
};
}