From 642637ca0dd27b72e5a41d7daeb90039baece4f7 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 19 Aug 2025 21:09:00 +0100 Subject: [PATCH] gnu: Add go-github-com-valyala-fastjson. * gnu/packages/golang-xyz.scm (go-github-com-valyala-fastjson): New variable. Change-Id: I2c88c7c5637f4d324011c5444a2d91d57a0c2362 --- gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0ac037de4809b0a7e375c6c474e2099c4614ff9f..1d8de51ce8d235de7a942a93a35d69a4a6dedadf 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -19388,6 +19388,29 @@ distributable command line applications in an expressive way.") anti-fragmentation protection.") (license license:expat))) +(define-public go-github-com-valyala-fastjson + (package + (name "go-github-com-valyala-fastjson") + (version "1.6.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/valyala/fastjson") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ly15rbdy9qmml39d8mazjvid3f13nhvj4v2zdlp13pn4gczdp3k")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/valyala/fastjson")) + (home-page "https://github.com/valyala/fastjson") + (synopsis "JSON parser and validator for Golang") + (description + "Package fastjson provides fast JSON parsing comparing to std @code{encoding/json}.") + (license license:expat))) + (define-public go-github-com-valyala-fasttemplate (package (name "go-github-com-valyala-fasttemplate")