sharlatan pushed a commit to branch go-team
in repository guix.

commit f74c448ec536b9a5593b26ce7263039500d50364
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 2 19:17:36 2025 +0000

    gnu: Add go-github-com-nrdcg-goinwx.
    
    * gnu/packages/golang-web.scm (go-github-com-nrdcg-goinwx): New variable.
    
    Change-Id: I5ceb2c58bb3286c3a7e603fce0caef048a9e87bb
---
 gnu/packages/golang-web.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index b273956fa7..d9d3e4627f 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5363,6 +5363,35 @@ multistream-select protocol.  The protocol is defined at
 2616} HTTP/1.1 standard.")
     (license license:bsd-3)))
 
+(define-public go-github-com-nrdcg-goinwx
+  (package
+    (name "go-github-com-nrdcg-goinwx")
+    (version "0.10.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/nrdcg/goinwx";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1ld3spdi7q8cf4hf0wnbl7gyw2k8n4wp03fqncjx2gw2nsjng684"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/nrdcg/goinwx"))
+    (propagated-inputs
+     (list
+      go-github-com-fatih-structs
+      go-github-com-kolo-xmlrpc
+      go-github-com-mitchellh-mapstructure))
+    (home-page "https://github.com/nrdcg/goinwx";)
+    (synopsis "INWX Go API client")
+    (description
+     "This go library implements some parts of the official
+@url{https://www.inwx.com/en/help/apidoc, INWX XML-RPC API}.")
+    (license license:expat)))
+
 (define-public go-github-com-nwidger-jsoncolor
   (package
     (name "go-github-com-nwidger-jsoncolor")

Reply via email to