gnu: sbcl-njson: Update to 1.0.0.

* gnu/packages/lisp-xyz.scm (sbcl-njson): Update to 1.0.0.
This commit is contained in:
Pierre Neidhardt 2023-04-25 10:36:45 +02:00
parent 08c63aac53
commit 2ebe270927
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -26267,7 +26267,7 @@ instead of #'FOO.
(define-public sbcl-njson (define-public sbcl-njson
(package (package
(name "sbcl-njson") (name "sbcl-njson")
(version "0.2.3") (version "1.0.0")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -26276,12 +26276,12 @@ instead of #'FOO.
(file-name (git-file-name "cl-njson" version)) (file-name (git-file-name "cl-njson" version))
(sha256 (sha256
(base32 (base32
"11s6qq719zlrpy0kb1id9qnrm73yrc3xi560k4s8cj79fy4nj0ib")))) "1apwccrvivrq57rlrw6vffrn3a5hikk10s0dndszjw5ri29b3qyd"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(inputs (list sbcl-cl-json)) (inputs (list sbcl-cl-json))
(native-inputs (list sbcl-lisp-unit2)) (native-inputs (list sbcl-lisp-unit2))
(arguments (arguments
'(#:asd-systems '("njson" "njson/aliases" "njson/cl-json"))) '(#:asd-systems '("njson" "njson/cl-json")))
(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
@ -26293,7 +26293,6 @@ loadable as additional system. @code{cl-json} is included by default, though.
Conveniences that NJSON provides are: 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
and writing, be it from streams/string/files, or from those. and writing, be it from streams/string/files, or from those.