2022-12-04T04:55:23 hcloud 1.30.4 -> 1.31.0 https://github.com/hetznercloud/cli/releases 2022-12-04T04:55:25 attrpath: hcloud 2022-12-04T04:55:25 Checking auto update branch... 2022-12-04T04:55:25 No auto update branch exists 2022-12-04T04:55:25 Old version 1.30.4" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "hcloud"; version = "1.31.0"; src = fetchFromGitHub { owner = "hetznercloud"; repo = "cli"; rev = "v${version}"; sha256 = "sha256-AYxuH0R8vS7vBcEca1xM/0F70x5Zr+NUmcfRrRjb6cs="; }; vendorSha256 = "sha256-sSsu8p9dHLzJRWSLQHQNMmoziOrlDL4BoLIcBo2REbQ="; 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 = { 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 ]; }; }