gnu: Add go-github-com-valyala-fastjson.

* gnu/packages/golang-xyz.scm (go-github-com-valyala-fastjson): New variable.

Change-Id: I2c88c7c5637f4d324011c5444a2d91d57a0c2362
This commit is contained in:
Sharlatan Hellseher 2025-08-19 21:09:00 +01:00
parent e74cd5cdd7
commit 642637ca0d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -19388,6 +19388,29 @@ distributable command line applications in an expressive way.")
anti-fragmentation protection.") anti-fragmentation protection.")
(license license:expat))) (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 (define-public go-github-com-valyala-fasttemplate
(package (package
(name "go-github-com-valyala-fasttemplate") (name "go-github-com-valyala-fasttemplate")