gnu: Add cl-json-streams.

* gnu/packages/lisp-xyz.scm (sbcl-json-streams, ecl-json-streams,
  cl-json-streams): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2021-05-20 22:55:55 +01:00 committed by Guillaume Le Vaillant
parent 2a60770f47
commit 20eb41b66a
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -16812,3 +16812,35 @@ (define-public cl-woo
(define-public ecl-woo
(sbcl-package->ecl-package sbcl-woo))
(define-public sbcl-json-streams
(let ((commit "5da012e8133affbf75024e7500feb37394690752")
(revision "1"))
(package
(name "sbcl-json-streams")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rotatef/json-streams")
(commit commit)))
(file-name (git-file-name "json-streams" version))
(sha256
(base32 "0cia3721im04q73dfkd688d8splgpz03qa4h8s3r39kar4w3xll2"))))
(build-system asdf-build-system/sbcl)
(native-inputs
`(("cl-quickcheck" ,sbcl-cl-quickcheck)
("flexi-streams" ,sbcl-flexi-streams)))
(home-page "https://github.com/rotatef/json-streams")
(synopsis "Common Lisp library for reading and writing JSON")
(description
"This package provides a stream based JSON parser/writer, well suited as
building block for higher level libraries.")
(license license:gpl3+))))
(define-public cl-json-streams
(sbcl-package->cl-source-package sbcl-json-streams))
(define-public ecl-json-streams
(sbcl-package->ecl-package sbcl-json-streams))