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 {
pname = "hcloud";
version = "1.37.0";
version = "1.38.3";
src = fetchFromGitHub {
owner = "hetznercloud";
repo = "cli";
rev = "refs/tags/v${version}";
hash = "sha256-6UQaO2ArAYd6Lr1maciC83k1GlR8FLx+acAZh6SjI3g=";
hash = "sha256-argcQvt4875TNOX5P5sOF41u6GcFq79gnH41To73foM=";
};
vendorHash = "sha256-mxAG3o3IY70xn8WymUzF96Q2XWwQ0efWrrw1VV4Y8HU=";
vendorHash = "sha256-RXojFeT80oroBSweyb0eYo+LC/JTi1F3LmQ10XpnEXA=";
ldflags = [
"-s"
@ -32,11 +32,11 @@ buildGoModule rec {
done
'';
meta = {
meta = with lib; {
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 ];
license = licenses.mit;
maintainers = with maintainers; [ zauberpony techknowlogick ];
};
}