3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/hcloud/default.nix

37 lines
954 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2018-02-02 23:36:02 +00:00
buildGoModule rec {
pname = "hcloud";
2022-07-28 15:02:01 +01:00
version = "1.30.1";
2019-07-30 10:20:46 +01:00
2018-02-02 23:36:02 +00:00
src = fetchFromGitHub {
owner = "hetznercloud";
repo = "cli";
rev = "v${version}";
2022-07-28 15:02:01 +01:00
sha256 = "sha256-0zVbk8NuPGYyEcYV1F1if8VdKa4MnW2v+VQcvgM9bZ8=";
2018-02-02 23:36:02 +00:00
};
2022-07-28 15:02:01 +01:00
vendorSha256 = "sha256-++uvg/vXRX2lPU4CmqAcLWbsWBXZHXaXO4qXEaq90T4=";
2018-10-17 22:23:56 +01:00
ldflags = [
"-s" "-w"
2022-04-26 14:21:52 +01:00
"-X github.com/hetznercloud/cli/internal/version.Version=${version}"
];
nativeBuildInputs = [ installShellFiles ];
2018-02-02 23:36:02 +00:00
postInstall = ''
for shell in bash fish zsh; do
2020-06-27 10:20:00 +01:00
$out/bin/hcloud completion $shell > hcloud.$shell
installShellCompletion hcloud.$shell
done
'';
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 = lib.licenses.mit;
maintainers = [ lib.maintainers.zauberpony ];
2018-02-02 23:36:02 +00:00
};
2020-06-27 10:20:00 +01:00
}