mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:49:34 -05:00
gnu: Update sbcl-njson to 1.1.0.
* gnu/packages/lisp-xyz.scm (sbcl-njson): Update to 1.1.0. [inputs]: Add sbcl-jzon. [arguments]: Add njson/jzon to 'asd-systems'. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
233d3bae95
commit
0d82148858
1 changed files with 6 additions and 6 deletions
|
@ -26402,7 +26402,7 @@ (define-public ecl-nkeymaps
|
||||||
(define-public sbcl-njson
|
(define-public sbcl-njson
|
||||||
(package
|
(package
|
||||||
(name "sbcl-njson")
|
(name "sbcl-njson")
|
||||||
(version "1.0.0")
|
(version "1.1.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -26411,12 +26411,12 @@ (define-public sbcl-njson
|
||||||
(file-name (git-file-name "cl-njson" version))
|
(file-name (git-file-name "cl-njson" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1apwccrvivrq57rlrw6vffrn3a5hikk10s0dndszjw5ri29b3qyd"))))
|
"02m9l77am2rlkg83dyp3jvb76ifw1y84xh3wpz6cx7h2wkxkjnl5"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(inputs (list sbcl-cl-json))
|
(inputs (list sbcl-cl-json sbcl-jzon))
|
||||||
(native-inputs (list sbcl-lisp-unit2))
|
(native-inputs (list sbcl-lisp-unit2))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:asd-systems '("njson" "njson/cl-json")))
|
'(#:asd-systems '("njson" "njson/cl-json" "njson/jzon")))
|
||||||
(home-page "https://github.com/atlas-engineer/njson")
|
(home-page "https://github.com/atlas-engineer/njson")
|
||||||
(synopsis "JSON handling framework for Common Lisp")
|
(synopsis "JSON handling framework for Common Lisp")
|
||||||
(description
|
(description
|
||||||
|
@ -26424,8 +26424,8 @@ (define-public sbcl-njson
|
||||||
and process JSON data, in the minimum keystrokes/minutes possible.
|
and process JSON data, in the minimum keystrokes/minutes possible.
|
||||||
|
|
||||||
NJSON is parser-independent, with existing Common Lisp JSON parsers being
|
NJSON is parser-independent, with existing Common Lisp JSON parsers being
|
||||||
loadable as additional system. @code{cl-json} is included by default, though.
|
loadable as additional system. @code{jzon} and @code{cl-json} backends are
|
||||||
Conveniences that NJSON provides are:
|
included by default, though. Conveniences that NJSON provides are:
|
||||||
|
|
||||||
@itemize
|
@itemize
|
||||||
@item @code{encode} and @code{decode} as single entry points for JSON reading
|
@item @code{encode} and @code{decode} as single entry points for JSON reading
|
||||||
|
|
Loading…
Reference in a new issue