gnu: Add bst.
* gnu/packages/lisp.scm (sbcl-bst, cl-bst, ecl-bst): New variables.
This commit is contained in:
parent
b1df0d9f77
commit
76b66fbaf5
1 changed files with 33 additions and 0 deletions
|
@ -7249,3 +7249,36 @@ (define-public cl-ledger
|
|||
|
||||
(define-public ecl-cl-ledger
|
||||
(sbcl-package->ecl-package sbcl-cl-ledger))
|
||||
|
||||
(define-public sbcl-bst
|
||||
(let ((commit "34f9c7e8e0a9f2c952fe310ab36cb630d5d9c15a")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-bst")
|
||||
(version (git-version "1.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/glv2/bst.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1amxns7hvvh4arwbh8ciwfzplg127vh37dnbamv1m1kmmnmihfc8"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
`(("alexandria" ,sbcl-alexandria)
|
||||
("fiveam" ,sbcl-fiveam)))
|
||||
(synopsis "Binary search tree for Common Lisp")
|
||||
(description
|
||||
"BST is a Common Lisp library for working with binary search trees that
|
||||
can contain any kind of values.")
|
||||
(home-page "https://github.com/glv2/bst")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public cl-bst
|
||||
(sbcl-package->cl-source-package sbcl-bst))
|
||||
|
||||
(define-public ecl-bst
|
||||
(sbcl-package->ecl-package sbcl-bst))
|
||||
|
|
Loading…
Reference in a new issue