mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 02:55:39 +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 {
|
buildGoModule rec {
|
||||||
pname = "exoscale-cli";
|
pname = "exoscale-cli";
|
||||||
@ -13,7 +13,7 @@ buildGoModule rec {
|
|||||||
|
|
||||||
vendorSha256 = null;
|
vendorSha256 = null;
|
||||||
|
|
||||||
excludedPackages = [ "./completion" "./docs" ];
|
nativeBuildInputs = [ installShellFiles ];
|
||||||
|
|
||||||
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
|
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
|
# because these are passed to "go install" which does not recognize -o
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
mv $GOPATH/bin/cli $GOPATH/bin/exo
|
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 = {
|
meta = {
|
||||||
description = "Command-line tool for everything at Exoscale: compute, storage, dns";
|
description = "Command-line tool for everything at Exoscale: compute, storage, dns";
|
||||||
homepage = "https://github.com/exoscale/cli";
|
homepage = "https://github.com/exoscale/cli";
|
||||||
license = lib.licenses.asl20;
|
license = lib.licenses.asl20;
|
||||||
maintainers = with lib.maintainers; [ dramaturg ];
|
maintainers = with lib.maintainers; [ dramaturg viraptor ];
|
||||||
mainProgram = "exo";
|
mainProgram = "exo";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user