mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: Add sbcl-graph-json.
* gnu/packages/lisp.scm (sbcl-graph-json): New variable.
This commit is contained in:
parent
a4daf99650
commit
b090bdc9f5
1 changed files with 17 additions and 0 deletions
|
@ -8066,3 +8066,20 @@ (define-public sbcl-graph-dot
|
|||
((#: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")))
|
||||
|
|
Loading…
Reference in a new issue