mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-24 03:06:40 +01:00
gnu: Add cl-heap.
* gnu/packages/lisp.scm (cl-heap, sbcl-cl-heap, ecl-cl-heap): New variables.
This commit is contained in:
parent
9d67480adf
commit
487392ce3d
1 changed files with 30 additions and 0 deletions
|
@ -7866,3 +7866,33 @@ (define-public cl-simple-parallel-tasks
|
|||
|
||||
(define-public ecl-simple-parallel-tasks
|
||||
(sbcl-package->ecl-package sbcl-simple-parallel-tasks))
|
||||
|
||||
(define-public sbcl-cl-heap
|
||||
(package
|
||||
(name "sbcl-cl-heap")
|
||||
(version "0.1.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
|
||||
"cl-heap_" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
`(("xlunit" ,sbcl-xlunit)))
|
||||
(arguments
|
||||
`(#:test-asd-file "cl-heap-tests.asd"))
|
||||
(synopsis "Heap and priority queue data structures for Common Lisp")
|
||||
(description
|
||||
"CL-HEAP provides various implementations of heap data structures (a
|
||||
binary heap and a Fibonacci heap) as well as an efficient priority queue.")
|
||||
(home-page "https://common-lisp.net/project/cl-heap/")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public cl-heap
|
||||
(sbcl-package->cl-source-package sbcl-cl-heap))
|
||||
|
||||
(define-public ecl-cl-heap
|
||||
(sbcl-package->ecl-package sbcl-cl-heap))
|
||||
|
|
Loading…
Reference in a new issue