nixpkgs/pkgs/applications/networking/cluster/timoni/default.nix
2023-09-18 16:55:09 +07:00

49 lines
1.1 KiB
Nix

{ lib
, buildGo121Module
, fetchFromGitHub
, installShellFiles
}:
buildGo121Module rec {
pname = "timoni";
version = "0.13.1";
src = fetchFromGitHub {
owner = "stefanprodan";
repo = "timoni";
rev = "v${version}";
hash = "sha256-fuDc9EMSjBE0DiZ+OiuRXTRlxnO4/2yxkDsdKpVdg5w=";
};
vendorHash = "sha256-RdfFesMgQU+Iezg9tE3RJ0Tk6jjIWY+ByJoKqUVWHwA=";
subPackages = [ "cmd/timoni" ];
nativeBuildInputs = [ installShellFiles ];
# Some tests require running Kubernetes instance
doCheck = false;
passthru.updateScript = ./update.sh;
ldflags = [
"-s"
"-w"
"-X main.VERSION=${version}"
];
postInstall = ''
installShellCompletion --cmd timoni \
--bash <($out/bin/timoni completion bash) \
--fish <($out/bin/timoni completion fish) \
--zsh <($out/bin/timoni completion zsh)
'';
meta = with lib; {
homepage = "https://timoni.sh";
changelog = "https://github.com/stefanprodan/timoni/releases/tag/${src.rev}";
description = "A package manager for Kubernetes, powered by CUE and inspired by Helm";
license = licenses.asl20;
maintainers = with maintainers; [ votava ];
};
}