Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
59 lines
1.3 KiB
Nix
59 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "exoscale-cli";
|
|
version = "1.85.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "exoscale";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-rulleAbiwnUABnHLpfHFjGXK3/DxFJLmse3NIClSpMQ=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
excludedPackages = [ "internal/integ" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${version}"
|
|
"-X main.commit=${src.rev}"
|
|
];
|
|
|
|
# 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 = ''
|
|
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; [ viraptor ];
|
|
mainProgram = "exo";
|
|
};
|
|
}
|