nixpkgs/pkgs/development/tools/hcloud/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

2018-02-02 23:36:02 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "hcloud-${version}";
2019-01-08 17:35:12 +00:00
version = "1.11.0";
2018-10-17 21:23:56 +00:00
2018-02-02 23:36:02 +00:00
goPackagePath = "github.com/hetznercloud/cli";
src = fetchFromGitHub {
owner = "hetznercloud";
repo = "cli";
rev = "v${version}";
2019-01-08 17:35:12 +00:00
sha256 = "0iknw14728l2mynrvb3fiqm7y893ppp22gbb3mppi6iy3as94f1f";
2018-02-02 23:36:02 +00:00
};
2018-10-17 21:23:56 +00:00
goDeps = ./deps.nix;
2018-06-24 19:40:39 +00:00
buildFlagsArray = [ "-ldflags=" "-w -X github.com/hetznercloud/cli/cli.Version=${version}" ];
2018-02-02 23:36:02 +00: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-02 23:36:02 +00: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 ];
};
}