[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/11: gnu: Add jsown.
From: |
guix-commits |
Subject: |
05/11: gnu: Add jsown. |
Date: |
Sun, 24 Jan 2021 05:45:35 -0500 (EST) |
ambrevar pushed a commit to branch master
in repository guix.
commit 4e0b0bf2f2e6076aa52447b303ac9033cec69f5f
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Sat Jan 23 16:29:20 2021 +0100
gnu: Add jsown.
* gnu/packages/lisp-xyz.scm (cl-jsown, ecl-jsown, sbcl-jsown): New
variables.
---
gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 7491802..10add72 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -13439,3 +13439,39 @@ the concrete syntax tree library.")
(define-public cl-eclector
(sbcl-package->cl-source-package sbcl-eclector))
+
+(define-public sbcl-jsown
+ (let ((commit "744c4407bef58dfa876d9da0b5c0205d869e7977"))
+ (package
+ (name "sbcl-jsown")
+ (version (git-version "1.0.1" "1" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/madnificent/jsown")
+ (commit commit)))
+ (file-name (git-file-name name commit))
+ (sha256
+ (base32 "0gadvmf1d9bq35s61z76psrsnzwwk12svi66jigf491hv48wigw7"))))
+ (build-system asdf-build-system/sbcl)
+ (home-page "https://github.com/madnificent/jsown")
+ (synopsis "Fast JSON reader / writer library for Common Lisp")
+ (description
+ "@code{jsown} is a high performance Common Lisp JSON parser. Its aim
+is to allow for the fast parsing of JSON objects in Common Lisp. Recently,
+functions and macros have been added to ease the burden of writing and editing
+@code{jsown} objects.
+
+@code{jsown} allows you to parse JSON objects quickly to a modifiable Lisp
+list and write them back. If you only need partial retrieval of objects,
+@code{jsown} allows you to select the keys which you would like to see parsed.
+@code{jsown} also has a JSON writer and some helper methods to alter the JSON
+objects themselves.")
+ (license license:expat))))
+
+(define-public ecl-jsown
+ (sbcl-package->ecl-package sbcl-jsown))
+
+(define-public cl-jsown
+ (sbcl-package->cl-source-package sbcl-jsown))
- branch master updated (d94f753 -> dbbf67d), guix-commits, 2021/01/24
- 01/11: gnu: Add trivial-escapes., guix-commits, 2021/01/24
- 02/11: gnu: Add cl-indentify., guix-commits, 2021/01/24
- 09/11: gnu: Add trivial-do., guix-commits, 2021/01/24
- 07/11: gnu: Add language-codes., guix-commits, 2021/01/24
- 06/11: gnu: Add system-locale., guix-commits, 2021/01/24
- 08/11: gnu: Add multilang-documentation., guix-commits, 2021/01/24
- 05/11: gnu: Add jsown.,
guix-commits <=
- 10/11: gnu: Add common-lisp-jupyter., guix-commits, 2021/01/24
- 03/11: gnu: Add concrete-syntax-tree., guix-commits, 2021/01/24
- 04/11: gnu: Add eclector., guix-commits, 2021/01/24
- 11/11: gnu: emacs-evil-collection: Update to 20210124., guix-commits, 2021/01/24