From 42f18e1f49d5d9fb22a0230a9fbfb874f8c44d57 Mon Sep 17 00:00:00 2001 From: Ashvith Shetty Date: Tue, 15 Apr 2025 23:50:46 +0530 Subject: [PATCH] gnu: Add go-github-com-ohler55-ojg. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang-web.scm (go-github-com-ohler55-ojg): New variable. Change-Id: I8922bee0be925f250d59fbf5017a8a213d15a6bd Signed-off-by: Ludovic Courtès --- 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 ;;; Copyright © 2025 André Batista ;;; Copyright © 2025 Jussi Timperi +;;; Copyright © 2025 Ashvith Shetty ;;; ;;; 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")