92b3d6365d
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
37 lines
934 B
Nix
37 lines
934 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ctlptl";
|
|
version = "0.8.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tilt-dev";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-OeK49cQ22yjTfmN7E/VIRD/u8f5x7TmMrEupi9CKg+8=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-M9B/rfMBjYJb9szmYPVZqURlcv62qHOLJ3ka0v++z0s=";
|
|
|
|
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 ];
|
|
};
|
|
}
|