nixpkgs/pkgs/tools/admin/exoscale-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2020-05-05 21:56:26 +00:00
2022-05-03 01:24:10 +00:00
buildGoModule rec {
2020-05-05 21:56:26 +00:00
pname = "exoscale-cli";
2022-05-03 01:24:10 +00:00
version = "1.54.0";
2020-05-05 21:56:26 +00:00
src = fetchFromGitHub {
2022-05-03 01:24:10 +00:00
owner = "exoscale";
repo = "cli";
rev = "v${version}";
sha256 = "sha256-uvPJ1cOKMpDf1KfEPkSTWMIMNojUlfpqI1ESomX1MlM=";
2020-05-05 21:56:26 +00:00
};
2022-05-03 01:24:10 +00:00
vendorSha256 = null;
2020-08-10 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2020-05-05 21:56:26 +00:00
2022-05-03 01:24:10 +00:00
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
2020-05-05 21:56:26 +00:00
# we need to rename the resulting binary but can't use buildFlags with -o here
# because these are passed to "go install" which does not recognize -o
postBuild = ''
2022-05-03 01:24:10 +00:00
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
2020-05-05 21:56:26 +00:00
'';
meta = {
description = "Command-line tool for everything at Exoscale: compute, storage, dns";
2022-05-03 01:24:10 +00:00
homepage = "https://github.com/exoscale/cli";
license = lib.licenses.asl20;
2022-05-04 10:43:10 +00:00
maintainers = with lib.maintainers; [ dramaturg viraptor ];
mainProgram = "exo";
2020-05-05 21:56:26 +00:00
};
}