mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
Merge pull request #171518 from viraptor/exo-man-and-completion
exoscale-cli: man pages and completion
This commit is contained in:
commit
7d9329f665
@ -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";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user