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

commit 79da01b04c15ac9690d2da5017b28b44d8e35b6a
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 79c1784dc2..14d4d8d008 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -13819,6 +13819,34 @@ StatHat} account.")
 REST APIs.")
     (license license:expat)))
 
+(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-swaggo-swag
   (package
     (name "go-github-com-swaggo-swag")

Reply via email to