[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: Add yason.
From: |
guix-commits |
Subject: |
03/09: gnu: Add yason. |
Date: |
Tue, 22 Oct 2019 04:47:20 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit 9d9a82d94dfd3fdffc23149e33886ed021cac7af
Author: Guillaume Le Vaillant <address@hidden>
Date: Mon Oct 21 14:02:57 2019 +0200
gnu: Add yason.
* gnu/packages/lisp.scm (cl-yason, sbcl-yason, ecl-yason): New variables.
---
gnu/packages/lisp.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 5e4f948..be0b876 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -7930,3 +7930,34 @@ of function partial application and composition.")
(define-public ecl-curry-compose-reader-macros
(sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
+
+(define-public sbcl-yason
+ (package
+ (name "sbcl-yason")
+ (version "0.7.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/phmarek/yason.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("alexandria" ,sbcl-alexandria)
+ ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
+ (synopsis "Common Lisp JSON parser/encoder")
+ (description
+ "YASON is a Common Lisp library for encoding and decoding data in the
+JSON interchange format.")
+ (home-page "https://github.com/phmarek/yason")
+ (license license:bsd-3)))
+
+(define-public cl-yason
+ (sbcl-package->cl-source-package sbcl-yason))
+
+(define-public ecl-yason
+ (sbcl-package->ecl-package sbcl-yason))
- branch master updated (9d67480 -> b090bdc), guix-commits, 2019/10/22
- 01/09: gnu: Add cl-heap., guix-commits, 2019/10/22
- 03/09: gnu: Add yason.,
guix-commits <=
- 02/09: gnu: Add curry-compose-reader-macros., guix-commits, 2019/10/22
- 04/09: gnu: sbcl-iterate: Add missing native input., guix-commits, 2019/10/22
- 08/09: gnu: Add sbcl-graph-dot., guix-commits, 2019/10/22
- 05/09: gnu: Add ecl-iterate., guix-commits, 2019/10/22
- 09/09: gnu: Add sbcl-graph-json., guix-commits, 2019/10/22
- 06/09: gnu: Add stefil., guix-commits, 2019/10/22
- 07/09: gnu: Add graph., guix-commits, 2019/10/22