mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
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:
parent
2a60770f47
commit
20eb41b66a
1 changed files with 32 additions and 0 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue