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

33 lines
973 B
Nix
Raw Normal View History

2020-08-10 09:20:00 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2020-05-05 21:56:26 +00:00
2020-08-10 09:20:00 +00:00
buildGoPackage rec {
2020-05-05 21:56:26 +00:00
pname = "exoscale-cli";
2020-08-10 07:17:56 +00:00
version = "1.16.0";
2020-05-05 21:56:26 +00:00
src = fetchFromGitHub {
owner = "exoscale";
repo = "cli";
rev = "v${version}";
2020-08-10 07:17:56 +00:00
sha256 = "0w0lgc3db9r1knd7hp98ycxfbfxbpfrb0vf4vxcqxlvlkjcrvg1z";
2020-05-05 21:56:26 +00:00
};
goPackagePath = "github.com/exoscale/cli";
2020-07-08 11:15:59 +00:00
buildFlags = "-ldflags=-X=main.version=${version}";
2020-05-05 21:56:26 +00:00
# ensures only the cli binary is built and we don't clutter bin/ with submodules
subPackages = [ "." ];
# 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 go/bin/cli go/bin/exo
'';
meta = {
description = "Command-line tool for everything at Exoscale: compute, storage, dns";
homepage = "https://github.com/exoscale/cli";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ dramaturg ];
};
}