2018-02-03 00:36:02 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "hcloud-${version}";
|
2019-01-08 18:35:12 +01:00
|
|
|
version = "1.11.0";
|
2018-10-17 23:23:56 +02:00
|
|
|
|
2018-02-03 00:36:02 +01:00
|
|
|
goPackagePath = "github.com/hetznercloud/cli";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hetznercloud";
|
|
|
|
repo = "cli";
|
|
|
|
rev = "v${version}";
|
2019-01-08 18:35:12 +01:00
|
|
|
sha256 = "0iknw14728l2mynrvb3fiqm7y893ppp22gbb3mppi6iy3as94f1f";
|
2018-02-03 00:36:02 +01:00
|
|
|
};
|
|
|
|
|
2018-10-17 23:23:56 +02:00
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2018-06-24 21:40:39 +02:00
|
|
|
buildFlagsArray = [ "-ldflags=" "-w -X github.com/hetznercloud/cli/cli.Version=${version}" ];
|
2018-02-03 00:36:02 +01:00
|
|
|
|
2018-09-03 17:21:43 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p \
|
|
|
|
$bin/etc/bash_completion.d \
|
|
|
|
$bin/share/zsh/vendor-completions
|
|
|
|
|
|
|
|
# Add bash completions
|
|
|
|
$bin/bin/hcloud completion bash > "$bin/etc/bash_completion.d/hcloud"
|
|
|
|
|
|
|
|
# Add zsh completions
|
|
|
|
echo "#compdef hcloud" > "$bin/share/zsh/vendor-completions/_hcloud"
|
|
|
|
$bin/bin/hcloud completion zsh >> "$bin/share/zsh/vendor-completions/_hcloud"
|
|
|
|
'';
|
|
|
|
|
2018-02-03 00:36:02 +01:00
|
|
|
meta = {
|
|
|
|
description = "A command-line interface for Hetzner Cloud, a provider for cloud virtual private servers";
|
|
|
|
homepage = https://github.com/hetznercloud/cli;
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.zauberpony ];
|
|
|
|
};
|
|
|
|
}
|