nomad: add bash completion

This commit is contained in:
Dennis Gosnell 2023-05-30 14:43:33 +09:00
parent d8e39e7307
commit 4c8943c830

View File

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