depot/pkgs/development/tools/kube-prompt/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

26 lines
628 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kube-prompt";
version = "1.0.11";
src = fetchFromGitHub {
owner = "c-bata";
repo = "kube-prompt";
rev = "v${version}";
sha256 = "sha256-9OWsITbC7YO51QzsRwDWvojU54DiuGJhkSGwmesEj9w=";
};
vendorHash = "sha256-wou5inOX8vadEBCIBccwSRjtzf0GH1abwNdUu4JBvyM=";
meta = with lib; {
description = "Interactive kubernetes client featuring auto-complete";
mainProgram = "kube-prompt";
license = licenses.mit;
homepage = "https://github.com/c-bata/kube-prompt";
maintainers = with maintainers; [ vdemeester ];
};
}