From 72e26a9f5b2bebec3ca84036ac532e9ccd73ffab Mon Sep 17 00:00:00 2001 From: Tom Siewert Date: Wed, 6 Jul 2022 14:28:46 +0200 Subject: [PATCH] hcloud: 1.29.5 -> 1.30.0 * hcloud: 1.29.5 -> 1.30.0 * hcloud: add fish to shell autocompletion Co-authored-by: superherointj <5861043+superherointj@users.noreply.github.com> --- pkgs/development/tools/hcloud/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/hcloud/default.nix b/pkgs/development/tools/hcloud/default.nix index e311a4b8107c..1b6489a74c82 100644 --- a/pkgs/development/tools/hcloud/default.nix +++ b/pkgs/development/tools/hcloud/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "hcloud"; - version = "1.29.5"; + version = "1.30.0"; src = fetchFromGitHub { owner = "hetznercloud"; repo = "cli"; rev = "v${version}"; - sha256 = "sha256-a+AXWr/60VFdNk+UkDYRXo5ib8LvaCVpjNi1GFrRVho="; + sha256 = "sha256-mbMrXPQg5yUhmfJ3ztrXD/NKmwJKkZFFPu+utrsaPEc="; }; - vendorSha256 = "sha256-iJnjmfP9BcT+OXotbS2+OSWGxQaMXwdlR1WTi04FesM="; + vendorSha256 = "sha256-++uvg/vXRX2lPU4CmqAcLWbsWBXZHXaXO4qXEaq90T4"; ldflags = [ "-s" "-w" @@ -21,7 +21,7 @@ buildGoModule rec { nativeBuildInputs = [ installShellFiles ]; postInstall = '' - for shell in bash zsh; do + for shell in bash fish zsh; do $out/bin/hcloud completion $shell > hcloud.$shell installShellCompletion hcloud.$shell done