guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 15b281538cf63c5a026f9d9d7f3236a4fe2bb8f8
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Thu Jan 29 11:08:23 2026 -0300

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

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 4f942b045b..03580836c0 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -10378,6 +10378,34 @@ facilitating virtual networking for container runtimes 
and reliable TCP/UDP
 forwarding and DNS resolution across host and VM boundaries.")
     (license license:asl2.0)))
 
+(define-public go-github-com-mreiferson-go-httpclient
+  (package
+    (name "go-github-com-mreiferson-go-httpclient")
+    (version "0.0.0-20201222173833-5e475fde3a4d")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/mreiferson/go-httpclient";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "13s8va5zlbmh5lgxpkdrcxvbqkbxszjvf27p1njv75q4jk8g5vhq"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/mreiferson/go-httpclient"
+      #:test-flags
+      ;; Test require internet access
+      #~(list "-skip" "TestHttpsConnection")))
+    (home-page "https://github.com/mreiferson/go-httpclient";)
+    (synopsis "HTTP client in Golang with retries and hooks")
+    (description
+     "This package provides a HTTP Transport that implements the
+@code{RoundTripper} interface and can be used as a built in replacement for
+the standard library.")
+    (license license:expat)))
+
 (define-public go-github-com-muhlemmer-httpforwarded
   (package
     (name "go-github-com-muhlemmer-httpforwarded")

Reply via email to