guix_mirror_bot pushed a commit to branch master
in repository guix.

commit cdad86579f711dbb24fc3b7472dc5f2e785a5d55
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:06:51 2025 +0100

    gnu: Add go-github-com-go-chi-chi.
    
    * gnu/packages/golang-web.scm (go-github-com-go-chi-chi): New variable.
    
    Change-Id: I8d7ad471e5bd7cc29e7f6c6e69cf6ae67b474439
    Modified-by: Sharlatan Hellseher <[email protected]>
    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 8e53e8f796..3ed4a028df 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -4920,6 +4920,34 @@ Features:
 @end itemize")
     (license license:expat)))
 
+(define-public go-github-com-go-chi-chi
+  (package
+    (name "go-github-com-go-chi-chi")
+    (version "4.1.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/go-chi/chi";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1chbdqmhzmni5bagkzrpcar9ky2fmvxpyq0xq7xh58880az6lbdl"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/go-chi/chi"
+      #:test-flags #~(list "-vet=off")))
+    (propagated-inputs
+     (list go-golang-org-x-net))
+    (home-page "https://github.com/go-chi/chi";)
+    (synopsis "Lightweight router for building Go HTTP services")
+    (description
+     "Chi is a lightweight, idiomatic and composable router for building Go
+HTTP services.  It is based on the standard Go @code{net/http} package and
+supports middleware, routing groups, and URL parameters.")
+    (license license:expat)))
+
 (define-public go-github-com-go-chi-chi-v5
   (package
     (name "go-github-com-go-chi-chi-v5")

Reply via email to