summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshvith Shetty <ashvithshetty0010@zohomail.in>2025-04-15 23:50:46 +0530
committerLudovic Courtès <ludo@gnu.org>2025-05-27 15:13:01 +0200
commit42f18e1f49d5d9fb22a0230a9fbfb874f8c44d57 (patch)
treeb735db142731327d1b27763844cb034f3616ff82
parent99908b5844ebe933cda6be44f53288d29369ebb4 (diff)
gnu: Add go-github-com-ohler55-ojg.
* gnu/packages/golang-web.scm (go-github-com-ohler55-ojg): New variable. Change-Id: I8922bee0be925f250d59fbf5017a8a213d15a6bd Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/golang-web.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 20ba7e663b..02c1225887 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -41,6 +41,7 @@
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2025 André Batista <nandre@riseup.net>
;;; Copyright © 2025 Jussi Timperi <jussi.timperi@iki.fi>
+;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -6559,6 +6560,31 @@ which produce colorized output using github.com/fatih/color.")
gzip the response body, for clients which support it.")
(license license:asl2.0)))
+(define-public go-github-com-ohler55-ojg
+ (package
+ (name "go-github-com-ohler55-ojg")
+ (version "1.26.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ohler55/ojg")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1zg2m6kxm4lw75if8w4grp57bky55746j8m7qysqjcwm4y65hcdb"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ohler55/ojg"))
+ (home-page "https://github.com/ohler55/ojg")
+ (synopsis "Optimized JSON for Go")
+ (description
+ "OjG is a high performance parser with a variety of additional
+JSON tools. @code{OjG} is optimized to processing huge data sets where data
+does not necessarily conform to a fixed structure.")
+ (license license:expat)))
+
(define-public go-github-com-opentracing-contrib-go-stdlib
(package
(name "go-github-com-opentracing-contrib-go-stdlib")