mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
f2c4b2f1eb
ctlptl: build only main executable
40 lines
965 B
Nix
40 lines
965 B
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ctlptl";
|
|
version = "0.8.29";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tilt-dev";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-4drk8mqFVGXUktPiWuVNzWVBQr4TRcutZgGsF3vpRIE=";
|
|
};
|
|
|
|
vendorHash = "sha256-rf/4xyridcsSlGOVQ91Wr8bHnm7wfuXs6HSPKW2J8hM=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
subPackages = [ "cmd/ctlptl" ];
|
|
|
|
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 ];
|
|
};
|
|
}
|