me
/
guix
Archived
1
0
Fork 0

gnu: Add cl-paths.

* gnu/packages/lisp-xyz.scm (sbcl-cl-paths, ecl-cl-paths, cl-paths): New
variables.
master
Ricardo Wurmus 2020-01-04 22:51:14 +01:00
parent 64997728ad
commit b571dfdb46
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 16 additions and 0 deletions

View File

@ -427,6 +427,22 @@ algorithm from the @url{http://antigrain.com, Antigrain} project.")
(define-public cl-aa
(sbcl-package->cl-source-package sbcl-cl-aa))
(define-public sbcl-cl-paths
(package
(inherit sbcl-cl-aa)
(name "sbcl-cl-paths")
(arguments '(#:asd-file "cl-paths.asd"))
(synopsis "Facilities to create and manipulate vectorial paths")
(description
"This package provides facilities to create and manipulate vectorial
paths.")))
(define-public ecl-cl-paths
(sbcl-package->ecl-package sbcl-cl-paths))
(define-public cl-paths
(sbcl-package->cl-source-package sbcl-cl-paths))
(define-public sbcl-clx
(package
(name "sbcl-clx")