me
/
guix
Archived
1
0
Fork 0

gnu: Add sbcl-graph-json.

* gnu/packages/lisp.scm (sbcl-graph-json): New variable.
master
Guillaume Le Vaillant 2019-10-21 14:03:03 +02:00 committed by Pierre Neidhardt
parent a4daf99650
commit b090bdc9f5
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 17 additions and 0 deletions

View File

@ -8066,3 +8066,20 @@ path, maximum flow, minimum spanning tree, etc.).")
((#:asd-file _ "") "graph.dot.asd") ((#:asd-file _ "") "graph.dot.asd")
((#:asd-system-name _ #f) "graph-dot"))) ((#:asd-system-name _ #f) "graph-dot")))
(synopsis "Serialize graphs to and from DOT format"))) (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")))