guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a9db71dae5116325531a9d98d17f2da5ee74922e
Author: Arthur Rodrigues <[email protected]>
AuthorDate: Thu May 21 01:29:43 2026 +0000

    gnu: Add go-github-com-invopop-jsonschema.
    
    * gnu/packages/golang-web.scm (go-github-com-invopop-jsonschema): New 
variable.
    
    Change-Id: Ie1f596c1f9e7e82518cd3697b947306942571d4b
    Relates-to: guix/guix!5417
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index c956453bfb..d57c4a87d2 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -10796,6 +10796,33 @@ dhcpv6 and dhcpv4
 @end itemize")
     (license license:bsd-3)))
 
+(define-public go-github-com-invopop-jsonschema
+  (package
+    (name "go-github-com-invopop-jsonschema")
+    (version "0.14.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/invopop/jsonschema";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0y881agfaycn5l5qn2y2jmiskchi0cvn5v602hna4ljy9rv5jxw2"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/invopop/jsonschema"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-pb33f-ordered-map-v2))
+    (home-page "https://github.com/invopop/jsonschema";)
+    (synopsis "Go JSON Schema Reflection")
+    (description
+     "Package jsonschema uses reflection to generate JSON Schemas from Go 
types.")
+    (license license:expat)))
+
 (define-public go-github-com-ipfs-go-cid
   (package
     (name "go-github-com-ipfs-go-cid")

Reply via email to