guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 01cbcb4ee45602516b5c0b71269bfe2b30ff7266
Author: Patrick Norton <[email protected]>
AuthorDate: Tue Jan 6 10:23:47 2026 -0500

    gnu: Add go-github-com-tcnksm-go-httpstat.
    
    * gnu/packages/golang-web.scm (go-github-com-tcnksm-go-httpstat): New
    variable.
    
    Change-Id: I408ca9bd82cf5f525459108a563457d5f8417e2b
    Relates-to: guix/guix!5417
    Reviewed-by: Arthur Rodrigues <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 3a75b84014..c956453bfb 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -18549,6 +18549,31 @@ Tailscale for access control.")
 Tailscale.")
     (license license:bsd-3)))
 
+(define-public go-github-com-tcnksm-go-httpstat
+  (package
+    (name "go-github-com-tcnksm-go-httpstat")
+    (version "0.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/tcnksm/go-httpstat";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "18jn40ra97waxx1mf23pkh6rq46y0nqd7vi3zcx9cwc39zqaf9bc"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:tests? #f ;Tests require network connection
+      #:import-path "github.com/tcnksm/go-httpstat"))
+    (home-page "https://github.com/tcnksm/go-httpstat";)
+    (synopsis "Trace HTTP latency information in Go")
+    (description
+     "Package httpstat traces HTTP latency infomation, such as DNSLookup and
+TCP Connection, on any Golang HTTP request with no big code modification.")
+    (license license:expat)))
+
 (define-public go-github-com-tdewolff-minify-v2
   (package
     (name "go-github-com-tdewolff-minify-v2")

Reply via email to