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

commit 4d831b774b64d1b9d73d8034070291e74559395d
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Feb 11 11:10:49 2026 +0000

    gnu: Add go-github-com-swaggo-files-v2.
    
    * gnu/packages/golang-web.scm (go-github-com-swaggo-files-v2): New variable.
    
    Change-Id: Ia9f7a04f5c0eeaa075323a370b94139e7f56b5c0
---
 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 3bbd241bbd..172f95ee01 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -4585,6 +4585,34 @@ certificate handling, and tools for interacting with 
Sigstore infrastructure
 like Fulcio and Rekor.")
     (license license:asl2.0)))
 
+(define-public go-github-com-swaggo-files-v2
+  (package
+    (name "go-github-com-swaggo-files-v2")
+    (version "2.0.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/swaggo/files";)
+             (commit (string-append "v" version))
+             ;; XXX: Submodule which pulls
+             ;; <https://github.com/swagger-api/swagger-ui>, try to package
+             ;; some of it's portion.
+             (recursive? #t)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0p727hiqvydf0bidhr6bbdz14wpm4nxlbi2bw4dz51c9hgdsn1v2"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/swaggo/files/v2"))
+    (home-page "https://github.com/swaggo/files";)
+    (synopsis "Static files for Swaggo API builder")
+    (description
+     "This package provides a collection of static files to build API
+specifications with Swaggo.")
+    (license license:expat)))
+
 (define-public go-github-com-ysmood-fetchup
   (package
     (name "go-github-com-ysmood-fetchup")

Reply via email to