mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
38 lines
1.0 KiB
Nix
38 lines
1.0 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "hcloud";
|
|
version = "1.35.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hetznercloud";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Bk5IaJp7BzME2nBA/Y3AACyOPY/fRt1AP1qfrsAaHiw=";
|
|
};
|
|
|
|
vendorHash = "sha256-3Ot0evdpV7HcWiJLzAJeRXg2rpc9zOUU6LohmOwkR3g=";
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X github.com/hetznercloud/cli/internal/version.Version=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
for shell in bash fish zsh; do
|
|
$out/bin/hcloud completion $shell > hcloud.$shell
|
|
installShellCompletion hcloud.$shell
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
changelog = "https://github.com/hetznercloud/cli/releases/tag/v${version}";
|
|
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 ];
|
|
};
|
|
}
|