Merge pull request #171338 from aaronjheng/exoscale-cli

exoscale-cli: 1.52.1 -> 1.54.0
main
Artturi 2 years ago committed by GitHub
commit 0c79aa4780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      pkgs/tools/admin/exoscale-cli/default.nix

@ -1,33 +1,32 @@
{ lib, buildGoPackage, fetchFromGitHub }: { lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec { buildGoModule rec {
pname = "exoscale-cli"; pname = "exoscale-cli";
version = "1.52.1"; version = "1.54.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "exoscale"; owner = "exoscale";
repo = "cli"; repo = "cli";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-CSltvSdKLAH711ubT6ROgkmq2EcFJplPmavsJa9xupM="; sha256 = "sha256-uvPJ1cOKMpDf1KfEPkSTWMIMNojUlfpqI1ESomX1MlM=";
}; };
goPackagePath = "github.com/exoscale/cli"; vendorSha256 = null;
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ]; excludedPackages = [ "./completion" "./docs" ];
# ensures only the cli binary is built and we don't clutter bin/ with submodules ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" ];
subPackages = [ "." ];
# we need to rename the resulting binary but can't use buildFlags with -o here # 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 # because these are passed to "go install" which does not recognize -o
postBuild = '' postBuild = ''
mv go/bin/cli go/bin/exo mv $GOPATH/bin/cli $GOPATH/bin/exo
''; '';
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 ];
mainProgram = "exo"; mainProgram = "exo";
}; };

Loading…
Cancel
Save