Merge pull request #328975 from a1994sc/package/update/zarf

zarf: add shell completion
This commit is contained in:
Aleksana 2024-07-25 10:09:02 +08:00 committed by GitHub
commit 4feb86b593
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,8 @@
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
, stdenv
}:
buildGoModule rec {
@ -17,6 +19,8 @@ buildGoModule rec {
vendorHash = "sha256-+3VYBvcA8TzO9uBl0863uATOavPY9cjt8xtgW7N7C4w=";
proxyVendor = true;
nativeBuildInputs = [ installShellFiles ];
preBuild = ''
mkdir -p build/ui
touch build/ui/index.html
@ -26,6 +30,14 @@ buildGoModule rec {
ldflags = [ "-s" "-w" "-X" "github.com/defenseunicorns/zarf/src/config.CLIVersion=${src.rev}" "-X" "k8s.io/component-base/version.gitVersion=v0.0.0+zarf${src.rev}" "-X" "k8s.io/component-base/version.gitCommit=${src.rev}" "-X" "k8s.io/component-base/version.buildDate=1970-01-01T00:00:00Z" ];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
export K9S_LOGS_DIR=$(mktemp -d)
installShellCompletion --cmd zarf \
--bash <($out/bin/zarf completion --no-log-file bash) \
--fish <($out/bin/zarf completion --no-log-file fish) \
--zsh <($out/bin/zarf completion --no-log-file zsh)
'';
meta = with lib; {
description = "DevSecOps for Air Gap & Limited-Connection Systems. https://zarf.dev";
mainProgram = "zarf";