[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/09: gnu: Add sbcl-graph-json.
From: |
guix-commits |
Subject: |
09/09: gnu: Add sbcl-graph-json. |
Date: |
Tue, 22 Oct 2019 04:47:22 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit b090bdc9f592b85e394e88b3d2c3c0e9ecbd75ac
Author: Guillaume Le Vaillant <address@hidden>
Date: Mon Oct 21 14:03:03 2019 +0200
gnu: Add sbcl-graph-json.
* gnu/packages/lisp.scm (sbcl-graph-json): New variable.
---
gnu/packages/lisp.scm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 6083008..4a75273 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -8066,3 +8066,20 @@ path, maximum flow, minimum spanning tree, etc.).")
((#:asd-file _ "") "graph.dot.asd")
((#:asd-system-name _ #f) "graph-dot")))
(synopsis "Serialize graphs to and from DOT format")))
+
+(define-public sbcl-graph-json
+ (package
+ (inherit sbcl-graph)
+ (name "sbcl-graph-json")
+ (inputs
+ `(("alexandria" ,sbcl-alexandria)
+ ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
+ ("graph" ,sbcl-graph)
+ ("metabang-bind" ,sbcl-metabang-bind)
+ ("named-readtables" ,sbcl-named-readtables)
+ ("yason" ,sbcl-yason)))
+ (arguments
+ (substitute-keyword-arguments (package-arguments sbcl-graph)
+ ((#:asd-file _ "") "graph.json.asd")
+ ((#:asd-system-name _ #f) "graph-json")))
+ (synopsis "Serialize graphs to and from JSON format")))
- 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, 2019/10/22
- 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 <=
- 06/09: gnu: Add stefil., guix-commits, 2019/10/22
- 07/09: gnu: Add graph., guix-commits, 2019/10/22