gnu: Update cl-njson to 0.2.3.

* gnu/package/lisp-xyz.scm (sbcl-njson): Update to 0.2.3.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Artyom Bologov 2022-11-18 22:41:09 +04:00 committed by Guillaume Le Vaillant
parent 7502af7931
commit 337fe45544
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -22887,7 +22887,7 @@ (define-public ecl-nkeymaps
(define-public sbcl-njson
(package
(name "sbcl-njson")
(version "0.1.0")
(version "0.2.3")
(source (origin
(method git-fetch)
(uri (git-reference
@ -22896,10 +22896,12 @@ (define-public sbcl-njson
(file-name (git-file-name "cl-njson" version))
(sha256
(base32
"0lv3q1841s4avii1jp89r91jq21sids2ycpy2id0kzhrljzhmy6j"))))
"11s6qq719zlrpy0kb1id9qnrm73yrc3xi560k4s8cj79fy4nj0ib"))))
(build-system asdf-build-system/sbcl)
(inputs (list sbcl-cl-json))
(native-inputs (list sbcl-lisp-unit2))
(arguments
'(#:asd-systems '("njson" "njson/aliases" "njson/cl-json")))
(home-page "https://github.com/atlas-engineer/njson")
(synopsis "JSON handling framework for Common Lisp")
(description
@ -22923,6 +22925,10 @@ (define-public sbcl-njson
@item @code{jif}, @code{jwhen}, @code{jor}, @code{jand}, and other macros
mimicking Lisp ones, while using truth values of JSON-decoded data.
@item @code{njson/aliases} package to nickname to @code{j} for all the
forms conveniently accessible as @code{j:rem}, @code{j:get},
@code{j:if} etc.
@end itemize\n")
(license license:bsd-3)))