me
/
guix
Archived
1
0
Fork 0

gnu: Add clump.

* gnu/packages/lisp-xyz.scm (cl-clump, sbcl-clump): New variables.
master
Pierre Neidhardt 2020-06-18 16:53:20 +02:00
parent 106354eaa4
commit 409fcee9e5
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 15 additions and 0 deletions

View File

@ -12019,3 +12019,18 @@ sequences of objects.")
'(#:asd-file "Binary-tree/clump-binary-tree.asd"
#:asd-system-name "clump-binary-tree"))
(synopsis "Implementation of binary trees for Common Lisp")))
(define-public sbcl-clump
(package
(inherit sbcl-clump-2-3-tree)
(name "sbcl-clump")
(arguments
'(#:asd-file "clump.asd"
#:asd-system-name "clump"))
(inputs
`(("clump-2-3-tree" ,sbcl-clump-2-3-tree)
("clump-binary-tree" ,sbcl-clump-binary-tree)))
(synopsis "Collection of tree implementations for Common Lisp")))
(define-public cl-clump
(sbcl-package->cl-source-package sbcl-clump))