Merge pull request #171518 from viraptor/exo-man-and-completion

exoscale-cli: man pages and completion
This commit is contained in:
Sandro 2022-05-11 00:53:04 +02:00 committed by GitHub
commit 7d9329f665
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ lib, buildGoModule, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
buildGoModule rec {
pname = "exoscale-cli";
@ -13,7 +13,7 @@ buildGoModule rec {
vendorSha256 = null;
excludedPackages = [ "./completion" "./docs" ];
nativeBuildInputs = [ installShellFiles ];
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
@ -21,13 +21,26 @@ buildGoModule rec {
# because these are passed to "go install" which does not recognize -o
postBuild = ''
mv $GOPATH/bin/cli $GOPATH/bin/exo
mkdir -p manpage
$GOPATH/bin/docs --man-page
rm $GOPATH/bin/docs
$GOPATH/bin/completion bash
$GOPATH/bin/completion zsh
rm $GOPATH/bin/completion
'';
postInstall = ''
installManPage manpage/*
installShellCompletion --cmd exo --bash bash_completion --zsh zsh_completion
'';
meta = {
description = "Command-line tool for everything at Exoscale: compute, storage, dns";
homepage = "https://github.com/exoscale/cli";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dramaturg ];
maintainers = with lib.maintainers; [ dramaturg viraptor ];
mainProgram = "exo";
};
}