Merge pull request #95106 from mikefaille/tanka
tanka: add bash completion
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ buildGoModule, fetchFromGitHub, lib }:
|
{ buildGoModule, fetchFromGitHub, lib, installShellFiles }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "tanka";
|
pname = "tanka";
|
||||||
@@ -17,6 +17,13 @@ buildGoModule rec {
|
|||||||
|
|
||||||
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ];
|
buildFlagsArray = [ "-ldflags=-s -w -X main.Version=${version}" ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
echo "complete -C $out/bin/tk tk" > tk.bash
|
||||||
|
installShellCompletion tk.bash
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Flexible, reusable and concise configuration for Kubernetes";
|
description = "Flexible, reusable and concise configuration for Kubernetes";
|
||||||
homepage = "https://github.com/grafana/tanka/";
|
homepage = "https://github.com/grafana/tanka/";
|
||||||
|
|||||||
Reference in New Issue
Block a user