Merge pull request #234939 from cdepillabout/nomad-bash-completion

nomad: add bash completion
This commit is contained in:
Dennis Gosnell 2023-06-05 13:13:11 +09:00 committed by GitHub
commit 31cd1b4afb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,7 @@
, buildGo120Module , buildGo120Module
, fetchFromGitHub , fetchFromGitHub
, nixosTests , nixosTests
, installShellFiles
}: }:
let let
@ -23,11 +24,18 @@ let
inherit sha256; inherit sha256;
}; };
nativeBuildInputs = [ installShellFiles ];
# ui: # ui:
# Nomad release commits include the compiled version of the UI, but the file # Nomad release commits include the compiled version of the UI, but the file
# is only included if we build with the ui tag. # is only included if we build with the ui tag.
tags = [ "ui" ]; tags = [ "ui" ];
postInstall = ''
echo "complete -C $out/bin/nomad nomad" > nomad.bash
installShellCompletion nomad.bash
'';
meta = with lib; { meta = with lib; {
homepage = "https://www.nomadproject.io/"; homepage = "https://www.nomadproject.io/";
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler"; description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";