guix_mirror_bot pushed a commit to branch master in repository guix. commit 42f18e1f49d5d9fb22a0230a9fbfb874f8c44d57 Author: Ashvith Shetty <ashvithshetty0...@zohomail.in> AuthorDate: Tue Apr 15 23:50:46 2025 +0530
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 <l...@gnu.org> --- gnu/packages/golang-web.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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 <t...@troyfigiel.com> ;;; Copyright © 2025 André Batista <nan...@riseup.net> ;;; Copyright © 2025 Jussi Timperi <jussi.timp...@iki.fi> +;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0...@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")