61 lines
1.5 KiB
Nix
61 lines
1.5 KiB
Nix
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tanka";
|
|
version = "0.29.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grafana";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Z4lIZi8KVHcusyXZikWX9qvcbK7Wr7M/y7/j80AKN6Q=";
|
|
};
|
|
|
|
vendorHash = "sha256-sNSih6Ss70/Va2UKDTMLqT6WUelcDUTvj85LSPXYCoM=";
|
|
|
|
doCheck = false;
|
|
# Required for versions >= 0.28 as they introduce a gowork.sum file. This is only used for tests so we can safely disable GOWORK
|
|
env.GOWORK = "off";
|
|
|
|
subPackages = [ "cmd/tk" ];
|
|
|
|
ldflags = [ "-s" "-w" "-extldflags '-static'" "-X github.com/grafana/tanka/pkg/tanka.CurrentVersion=v${version}" ];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
echo "complete -C $out/bin/tk tk" > tk.bash
|
|
|
|
cat >tk.fish <<EOF
|
|
|
|
function __complete_tk
|
|
set -lx COMP_LINE (commandline -cp)
|
|
test -z (commandline -ct)
|
|
and set COMP_LINE "\$COMP_LINE "
|
|
$out/bin/tk
|
|
end
|
|
complete -f -c tk -a "(__complete_tk)"
|
|
|
|
EOF
|
|
|
|
cat >tk.zsh <<EOF
|
|
#compdef tk
|
|
autoload -U +X bashcompinit && bashcompinit
|
|
complete -o nospace -C $out/bin/tk tk
|
|
EOF
|
|
|
|
installShellCompletion \
|
|
--cmd tk \
|
|
--bash tk.bash \
|
|
--fish tk.fish \
|
|
--zsh tk.zsh
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Flexible, reusable and concise configuration for Kubernetes";
|
|
homepage = "https://tanka.dev";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mikefaille ];
|
|
mainProgram = "tk";
|
|
};
|
|
}
|