e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
37 lines
930 B
Nix
37 lines
930 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ctlptl";
|
|
version = "0.8.25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tilt-dev";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-rO3kOZGAI2K4+sFx2ka1lufTWauUY+qRWpoweT33cQw=";
|
|
};
|
|
|
|
vendorHash = "sha256-hWmk/QmkSvRvjt9vcPG07sVwWlqfZrYvY0MGaeKhvTI=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd ctlptl \
|
|
--bash <($out/bin/ctlptl completion bash) \
|
|
--fish <($out/bin/ctlptl completion fish) \
|
|
--zsh <($out/bin/ctlptl completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "CLI for declaratively setting up local Kubernetes clusters";
|
|
homepage = "https://github.com/tilt-dev/ctlptl";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ svrana ];
|
|
};
|
|
}
|