summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-19 21:09:00 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-08-19 21:40:29 +0100
commit642637ca0dd27b72e5a41d7daeb90039baece4f7 (patch)
tree40b6e2f08fc4b99ca37b736771bde1c1bc95cfcc /gnu
parente74cd5cdd7e4363d312be33f8cf595da2463828c (diff)
gnu: Add go-github-com-valyala-fastjson.
* gnu/packages/golang-xyz.scm (go-github-com-valyala-fastjson): New variable. Change-Id: I2c88c7c5637f4d324011c5444a2d91d57a0c2362
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0ac037de480..1d8de51ce8d 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.")
19388anti-fragmentation protection.") 19388anti-fragmentation protection.")
19389 (license license:expat))) 19389 (license license:expat)))
19390 19390
19391(define-public go-github-com-valyala-fastjson
19392 (package
19393 (name "go-github-com-valyala-fastjson")
19394 (version "1.6.4")
19395 (source
19396 (origin
19397 (method git-fetch)
19398 (uri (git-reference
19399 (url "https://github.com/valyala/fastjson")
19400 (commit (string-append "v" version))))
19401 (file-name (git-file-name name version))
19402 (sha256
19403 (base32 "0ly15rbdy9qmml39d8mazjvid3f13nhvj4v2zdlp13pn4gczdp3k"))))
19404 (build-system go-build-system)
19405 (arguments
19406 (list
19407 #:import-path "github.com/valyala/fastjson"))
19408 (home-page "https://github.com/valyala/fastjson")
19409 (synopsis "JSON parser and validator for Golang")
19410 (description
19411 "Package fastjson provides fast JSON parsing comparing to std @code{encoding/json}.")
19412 (license license:expat)))
19413
19391(define-public go-github-com-valyala-fasttemplate 19414(define-public go-github-com-valyala-fasttemplate
19392 (package 19415 (package
19393 (name "go-github-com-valyala-fasttemplate") 19416 (name "go-github-com-valyala-fasttemplate")