diff options
author | Andreas Enge <andreas@enge.fr> | 2023-04-25 15:19:29 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-04-25 15:19:29 +0200 |
commit | c919bfefd98bf2e29549539b4e28e6dc2a8a6f32 (patch) | |
tree | 61d10f1fcc6f80d97f788e19df7f20ff7fc27752 /gnu/packages/lisp-xyz.scm | |
parent | ce0bdceb4948d5f297327a1b1724074ca960eb05 (diff) | |
parent | 472706ae2f9160833951a4e4bcc4c206e03097b0 (diff) | |
download | guix-c919bfefd98bf2e29549539b4e28e6dc2a8a6f32.tar.gz guix-c919bfefd98bf2e29549539b4e28e6dc2a8a6f32.zip |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index aa7a73b7cf..ec42f7facb 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -9769,8 +9769,8 @@ implementation specific equivalent.") (sbcl-package->ecl-package sbcl-trivial-macroexpand-all)) (define-public sbcl-serapeum - (let ((commit "fbfd2a219fb22c70c1c5b86910c5106fd0f9b447") - (revision "8")) + (let ((commit "ce6c3b320cde38767caea2b86afa87ff280b9c11") + (revision "9")) (package (name "sbcl-serapeum") (version (git-version "0.0.0" revision commit)) @@ -9783,7 +9783,7 @@ implementation specific equivalent.") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "0gz70hwlsyawmm7j85yjg449hpy57w5jdd7rkal6lhmmfnl0nsbp")))) + (base32 "0vpxgvxniyn12wkhmav2iq4x4bj12hjrsf2ajwcapp0sh06qg1j9")))) (build-system asdf-build-system/sbcl) (inputs (list sbcl-alexandria @@ -26307,7 +26307,7 @@ instead of #'FOO. (define-public sbcl-njson (package (name "sbcl-njson") - (version "0.2.3") + (version "1.0.0") (source (origin (method git-fetch) (uri (git-reference @@ -26316,12 +26316,12 @@ instead of #'FOO. (file-name (git-file-name "cl-njson" version)) (sha256 (base32 - "11s6qq719zlrpy0kb1id9qnrm73yrc3xi560k4s8cj79fy4nj0ib")))) + "1apwccrvivrq57rlrw6vffrn3a5hikk10s0dndszjw5ri29b3qyd")))) (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"))) + '(#:asd-systems '("njson" "njson/cl-json"))) (home-page "https://github.com/atlas-engineer/njson") (synopsis "JSON handling framework for Common Lisp") (description @@ -26333,7 +26333,6 @@ loadable as additional system. @code{cl-json} is included by default, though. Conveniences that NJSON provides are: @itemize - @item @code{encode} and @code{decode} as single entry points for JSON reading and writing, be it from streams/string/files, or from those. |