guix_mirror_bot pushed a commit to branch master
in repository guix.

commit fb4c32b45ed37320b916bc3f6a8420804308c9bd
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 14:28:12 2025 -0500

    gnu: Add go-github-com-go-resty-resty-v2.
    
    * gnu/packages/golang-web.scm (go-github-com-go-resty-resty-v2): New
    variable.
    
    Change-Id: Ie04b7ba616e179622f13796552595fa0391b64de
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 1986adb06e..6abd355bfe 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5309,6 +5309,36 @@ projects.")
 OpenAPI 2.0).")
     (license license:asl2.0)))
 
+(define-public go-github-com-go-resty-resty-v2
+  (package
+    (name "go-github-com-go-resty-resty-v2")
+    (version "2.16.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/go-resty/resty";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1h2l5mdajmy9f3ghhsqbfhmrjm6mpkz9n4rsv98apr79daz0g0kc"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/go-resty/resty/v2"
+      #:embed-files
+      #~(list "children" "nodes" "text")
+      #:test-flags
+      #~(list "-count=1")))
+    (propagated-inputs
+     (list go-golang-org-x-net
+           go-golang-org-x-time))
+    (home-page "https://resty.dev/";)
+    (synopsis "HTTP, REST, and SSE client library for Golang")
+    (description
+     "Package resty provides Simple HTTP and REST client library for Go.")
+    (license license:expat)))
+
 (define-public go-github-com-go-webauthn-webauthn
   (package
     (name "go-github-com-go-webauthn-webauthn")

Reply via email to