unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Roman Scherer <roman@burningswell.com>
To: 75176@debbugs.gnu.org
Cc: Roman Scherer <roman@burningswell.com>,
	Sharlatan Hellseher <sharlatanus@gmail.com>
Subject: [bug#75176] [PATCH 17/18] gnu: Add go-github-com-hetznercloud-hcloud-go.
Date: Sun, 29 Dec 2024 13:14:36 +0100	[thread overview]
Message-ID: <b32a4f3d3b58475807720e21a22f1bfcc3c03a75.1735474134.git.roman@burningswell.com> (raw)
In-Reply-To: <cover.1735474134.git.roman@burningswell.com>

* gnu/packages/admin.scm (go-github-com-hetznercloud-hcloud-go): New variable.

Change-Id: I539fb9435e38e311a9456f0224be02bb99ed75d1
---
 gnu/packages/admin.scm | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index b44f30f9bd..a5f6222e39 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -143,6 +143,7 @@ (define-module (gnu packages admin)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages golang)
   #:use-module (gnu packages golang-build)
+  #:use-module (gnu packages golang-check)
   #:use-module (gnu packages golang-compression)
   #:use-module (gnu packages golang-xyz)
   #:use-module (gnu packages groff)
@@ -176,6 +177,7 @@ (define-module (gnu packages admin)
   #:use-module (gnu packages perl-check)
   #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages polkit)
+  #:use-module (gnu packages prometheus)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-build)
   #:use-module (gnu packages python-crypto)
@@ -6150,6 +6152,36 @@ (define-public fail2ban
 mechanisms if you really want to protect services.")
     (license license:gpl2+)))
 
+(define-public go-github-com-hetznercloud-hcloud-go
+  (package
+    (name "go-github-com-hetznercloud-hcloud-go")
+    (version "2.17.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/hetznercloud/hcloud-go")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0rmrp100clcymz6j741dpvx217d6ljnfqn9qfndlmy9rwi64ih8h"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/hetznercloud/hcloud-go/v2/hcloud"
+      #:unpack-path "github.com/hetznercloud/hcloud-go/v2"))
+    (propagated-inputs (list go-golang-org-x-net
+                             go-golang-org-x-crypto
+                             go-github-com-vburenin-ifacemaker
+                             go-github-com-stretchr-testify
+                             go-github-com-prometheus-client-golang
+                             go-github-com-jmattheis-goverter
+                             go-github-com-google-go-cmp))
+    (home-page "https://github.com/hetznercloud/hcloud-go")
+    (synopsis "Golang library for the Hetzner Cloud API")
+    (description "This package provides a library for the Hetzner Cloud API.")
+    (license license:expat)))
+
 (define-public restartd
   (let* ((commit "7044125ac55056f2663536f7137170edf92ebd75")
          ;; Version is 0.2.4 in the version file in the repo
-- 
2.47.1





  parent reply	other threads:[~2024-12-29 12:18 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-29 12:12 [bug#75176] [PATCH 00/18] Add command-line interface for Hetzner Cloud Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 01/18] gnu: Add go-github-com-fatih-structs Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 02/18] gnu: Add go-github-com-guptarohit-asciigraph Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 03/18] gnu: Add go-github-com-jmattheis-goverter Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 04/18] gnu: Add go-github-com-vburenin-ifacemaker Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 05/18] gnu: Add go-github-com-jedib0t-go-pretty-list Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 06/18] gnu: Add go-github-com-jedib0t-go-pretty-progress Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 07/18] gnu: Add go-github-com-jedib0t-go-pretty-table Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 08/18] gnu: Add go-github-com-jedib0t-go-pretty-text Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 09/18] gnu: Add go-github-com-bool64-dev Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 10/18] gnu: Add go-github-com-bool64-shared Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 11/18] gnu: Add go-github-com-iancoleman-orderedmap Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 12/18] gnu: Add go-github-com-yosuke-furukawa-json5 Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 13/18] gnu: Add go-github-com-sergi-go-diff-diffmatchpatch Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 14/18] gnu: Add go-github-com-yudai-golcs Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 15/18] gnu: Add go-github-com-yudai-gojsondiff Roman Scherer
2024-12-29 12:14 ` [bug#75176] [PATCH 16/18] gnu: Add go-github-com-swaggest-assertjson Roman Scherer
2024-12-29 12:14 ` Roman Scherer [this message]
2024-12-29 12:14 ` [bug#75176] [PATCH 18/18] gnu: Add go-github-com-hetznercloud-cli Roman Scherer
2025-01-02 17:18 ` bug#75176: [PATCH 00/18] Add command-line interface for Hetzner Cloud Sharlatan Hellseher
     [not found] ` <handler.75176.D75176.173583833716177.notifdone@debbugs.gnu.org>
2025-01-02 19:51   ` [bug#75176] closed ([PATCH 00/18] Add command-line interface for Hetzner Cloud) Roman Scherer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b32a4f3d3b58475807720e21a22f1bfcc3c03a75.1735474134.git.roman@burningswell.com \
    --to=roman@burningswell.com \
    --cc=75176@debbugs.gnu.org \
    --cc=sharlatanus@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).