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

commit d492f9389247634431c2664c3342a0683a1e0d22
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 1 21:15:40 2026 +0100

    gnu: Add go-github-com-labstack-echo-v5.
    
    * gnu/packages/golang-web.scm (go-github-com-labstack-echo-v5): New 
variable.
    
    Change-Id: I4b862b2e654703c6e95c3ba362f8e89f52c46d1f
---
 gnu/packages/golang-web.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 938f4995f4..da2cc6689d 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -11896,6 +11896,27 @@ Features:
 @end itemize")
     (license license:expat)))
 
+(define-public go-github-com-labstack-echo-v5
+  (package
+    (inherit go-github-com-labstack-echo-v4)
+    (name "go-github-com-labstack-echo-v5")
+    (version "5.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/labstack/echo";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1a7d9cmn6kchzl79cdldxxhanqqjpml1vvaw5ak6cwan6cn9gb5i"))))
+    (arguments
+     (list
+      #:import-path "github.com/labstack/echo/v5"))
+    (propagated-inputs
+     (list go-golang-org-x-net
+           go-golang-org-x-time))))
+
 (define-public go-github-com-lestrrat-go-httpcc
   (package
     (name "go-github-com-lestrrat-go-httpcc")

Reply via email to