Merge pull request #263079 from techknowlogick/hcloud-1383

hcloud: 1.37.0 -> 1.38.3
This commit is contained in:
Mario Rodas 2023-10-25 19:46:16 -05:00 committed by GitHub
commit 6229eaa9b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,16 +6,16 @@
buildGoModule rec { buildGoModule rec {
pname = "hcloud"; pname = "hcloud";
version = "1.37.0"; version = "1.38.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "hetznercloud"; owner = "hetznercloud";
repo = "cli"; repo = "cli";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-6UQaO2ArAYd6Lr1maciC83k1GlR8FLx+acAZh6SjI3g="; hash = "sha256-argcQvt4875TNOX5P5sOF41u6GcFq79gnH41To73foM=";
}; };
vendorHash = "sha256-mxAG3o3IY70xn8WymUzF96Q2XWwQ0efWrrw1VV4Y8HU="; vendorHash = "sha256-RXojFeT80oroBSweyb0eYo+LC/JTi1F3LmQ10XpnEXA=";
ldflags = [ ldflags = [
"-s" "-s"
@ -32,11 +32,11 @@ buildGoModule rec {
done done
''; '';
meta = { meta = with lib; {
changelog = "https://github.com/hetznercloud/cli/releases/tag/v${version}"; 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"; description = "A command-line interface for Hetzner Cloud, a provider for cloud virtual private servers";
homepage = "https://github.com/hetznercloud/cli"; homepage = "https://github.com/hetznercloud/cli";
license = lib.licenses.mit; license = licenses.mit;
maintainers = [ lib.maintainers.zauberpony ]; maintainers = with maintainers; [ zauberpony techknowlogick ];
}; };
} }