all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 69904@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Guillaume Le Vaillant <glv@posteo.net>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
	Munyoki Kilyungi <me@bonfacemunyoki.com>,
	Sharlatan Hellseher <sharlatanus@gmail.com>,
	jgart <jgart@dismail.de>
Subject: [bug#69904] [PATCH 05/10] gnu: Add cl-st-json.
Date: Tue, 19 Mar 2024 21:41:31 +0000	[thread overview]
Message-ID: <b27db2e4a0a8d8fbc6db87517c3a9de70c3de377.1710883390.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1710883390.git.sharlatanus@gmail.com>

* 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 1378fe7353..9f25066e1c 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -251,6 +251,39 @@ (define-public ecl-reader
      ;; 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"))
-- 
2.41.0





  parent reply	other threads:[~2024-03-19 21:43 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-19 21:34 [bug#69904] [PATCH 00/10] gnu: Add cl-ciel Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 01/10] gnu: Add cl-arrow-macros Sharlatan Hellseher
2024-03-20 12:38   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 02/10] gnu: Add cl-trivial-utilities Sharlatan Hellseher
2024-03-20 12:44   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 03/10] gnu: Add cl-trivial-monitored-thread Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 04/10] gnu: Add cl-boost-json Sharlatan Hellseher
2024-03-20 12:56   ` Guillaume Le Vaillant
2024-03-19 21:41 ` Sharlatan Hellseher [this message]
2024-03-19 21:41 ` [bug#69904] [PATCH 06/10] gnu: Add cl-json-pointer Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 07/10] gnu: Add cl-easy-routes Sharlatan Hellseher
2024-03-20 13:11   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 08/10] gnu: Add cl-vgplot Sharlatan Hellseher
2024-03-20 13:19   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 09/10] gnu: Add cl-punch Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 10/10] gnu: Add cl-ciel Sharlatan Hellseher
2024-03-20 13:29 ` [bug#69904] [PATCH 00/10] " Guillaume Le Vaillant
2024-03-21 22:01 ` bug#69904: " Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b27db2e4a0a8d8fbc6db87517c3a9de70c3de377.1710883390.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=69904@debbugs.gnu.org \
    --cc=cox.katherine.e+guix@gmail.com \
    --cc=glv@posteo.net \
    --cc=jgart@dismail.de \
    --cc=me@bonfacemunyoki.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.