[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/19: gnu: Add cl-st-json.
From: |
guix-commits |
Subject: |
07/19: gnu: Add cl-st-json. |
Date: |
Thu, 21 Mar 2024 17:59:30 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit 56fd98238b1eb415e6055f70d0c83fc0f0eb026c
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue Mar 19 21:08:30 2024 +0000
gnu: Add cl-st-json.
* gnu/packages/lisp-xyz.scm (cl-st-json, ecl-st-json, sbcl-st-json):
New variables.
Change-Id: Ib349cfb6fb7da17741f331215e9a4d46bc4866c0
---
gnu/packages/lisp-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 35b667ada5..9bea6d8d78 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -251,6 +251,39 @@ accessors, hash-tables, sets, uiop:run-program, arrays and
a few others.")
;; TODO: Tests fail on call to coreutils echo for ecl.
`(#:tests? #f))))
+(define-public sbcl-st-json
+ (let ((commit "4a0025bcc5b6921454822f1b9f38f697b4eeaf43")
+ (revision "0"))
+ (package
+ (name "sbcl-st-json")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/marijnh/ST-JSON")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06qrhr5iw73k96lai2x9w52l6gnmlxy7fsr0r35gz6nz1f71x7gx"))))
+ (build-system asdf-build-system/sbcl)
+ (home-page "https://marijnhaverbeke.nl/st-json/")
+ (synopsis "JSON for Common Lisp")
+ (description
+ "ST-JSON (@code{ST} because it originated at Streamtech) is a Common
Lisp
+ library for encoding and decoding JSON values (as specified on json.org).
+
+This library does mostly the same thing as CL-JSON, but is simpler and more
+precise about types (distinguishing boolean false, the empty array, and the
+empty object).")
+ (license license:zlib))))
+
+(define-public cl-st-json
+ (sbcl-package->cl-source-package sbcl-st-json))
+
+(define-public ecl-st-json
+ (sbcl-package->ecl-package sbcl-st-json))
+
(define-public sbcl-stdutils
(let ((commit "4a4e5a4036b815318282da5dee2a22825369137b")
(revision "0"))
- branch master updated (d67e4f0f9b -> c0dfb550cb), guix-commits, 2024/03/21
- 01/19: gnu: cl-form-types: Disable tests on ECL implementation., guix-commits, 2024/03/21
- 06/19: gnu: Add cl-boost-json., guix-commits, 2024/03/21
- 08/19: gnu: Add cl-json-pointer., guix-commits, 2024/03/21
- 07/19: gnu: Add cl-st-json.,
guix-commits <=
- 09/19: gnu: Add cl-mimeparse., guix-commits, 2024/03/21
- 10/19: gnu: Add cl-hunchentoot-errors., guix-commits, 2024/03/21
- 11/19: gnu: Add cl-easy-routes., guix-commits, 2024/03/21
- 13/19: gnu: Add cl-punch., guix-commits, 2024/03/21
- 16/19: gnu: cl-deploy: Remove input labels., guix-commits, 2024/03/21
- 12/19: gnu: Add cl-vgplot., guix-commits, 2024/03/21
- 02/19: gnu: cl-form-types: Update to 0.3.2., guix-commits, 2024/03/21
- 03/19: gnu: Add cl-arrow-macros., guix-commits, 2024/03/21
- 17/19: gnu: cl-clack: Refresh package style., guix-commits, 2024/03/21
- 19/19: gnu: sbcl-cl-gltf: Update to 2.0.0-1.7a3af05., guix-commits, 2024/03/21