2020-05-16 04:12:50 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2016-07-19 11:30:35 +01:00
|
|
|
|
2020-05-16 04:12:50 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "doctl";
|
2020-07-24 01:29:02 +01:00
|
|
|
version = "1.46.0";
|
2020-04-10 09:50:53 +01:00
|
|
|
|
2020-05-16 04:12:50 +01:00
|
|
|
vendorSha256 = null;
|
2016-07-19 11:30:35 +01:00
|
|
|
|
2020-04-10 09:50:53 +01:00
|
|
|
subPackages = [ "cmd/doctl" ];
|
|
|
|
|
2020-05-16 04:12:50 +01:00
|
|
|
buildFlagsArray = let t = "github.com/digitalocean/doctl"; in ''
|
2020-04-10 09:50:53 +01:00
|
|
|
-ldflags=
|
2020-05-16 04:12:50 +01:00
|
|
|
-X ${t}.Major=${lib.versions.major version}
|
|
|
|
-X ${t}.Minor=${lib.versions.minor version}
|
|
|
|
-X ${t}.Patch=${lib.versions.patch version}
|
|
|
|
-X ${t}.Label=release
|
2020-04-10 09:50:53 +01:00
|
|
|
'';
|
2016-11-17 22:32:21 +00:00
|
|
|
|
2020-04-10 13:19:42 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
export HOME=$(mktemp -d) # attempts to write to /homeless-shelter
|
|
|
|
for shell in bash fish zsh; do
|
2020-04-28 02:50:57 +01:00
|
|
|
$out/bin/doctl completion $shell > doctl.$shell
|
2020-04-10 13:19:42 +01:00
|
|
|
installShellCompletion doctl.$shell
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2016-07-19 11:30:35 +01:00
|
|
|
src = fetchFromGitHub {
|
2020-04-10 09:50:53 +01:00
|
|
|
owner = "digitalocean";
|
|
|
|
repo = "doctl";
|
|
|
|
rev = "v${version}";
|
2020-07-24 01:29:02 +01:00
|
|
|
sha256 = "1f9gw1qjannswx1vy64a5a2cfr8azsci241pk0xhrhk6aqpjzx1n";
|
2016-07-19 11:30:35 +01:00
|
|
|
};
|
|
|
|
|
2020-04-10 09:50:53 +01:00
|
|
|
meta = with lib; {
|
2016-07-19 11:30:35 +01:00
|
|
|
description = "A command line tool for DigitalOcean services";
|
2020-04-10 09:50:53 +01:00
|
|
|
homepage = "https://github.com/digitalocean/doctl";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.siddharthist ];
|
2016-07-19 11:30:35 +01:00
|
|
|
};
|
|
|
|
}
|