gnu: Add cells.

* gnu/packages/lisp-xyz.scm (cl-cells, ecl-cells, sbcl-cells): New variables.
This commit is contained in:
Pierre Neidhardt 2022-06-30 14:47:43 +02:00
parent f5ee5c73a7
commit 5eaf306699
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F

@ -21568,3 +21568,37 @@ It was originally developped for the Cells library.")
(define-public ecl-utils-kt
(sbcl-package->ecl-package sbcl-utils-kt))
(define-public sbcl-cells
(let ((commit "e8542b17fddd6340c1e237ce482a52327c8ead8e"))
(package
(name "sbcl-cells")
(version (git-version "3.0" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kennytilton/cells")
(commit commit)))
(file-name (git-file-name "cl-cells" version))
(sha256
(base32 "0rkzvwq38lwb1045w54kw020pb9i63hxiawwhqkf8k1inhak3fdk"))))
(build-system asdf-build-system/sbcl)
(inputs
(list sbcl-utils-kt))
(arguments
;; Tests fail with #<TYPE-ERROR expected-type: STREAM datum: NIL>.
'(#:tests? #f))
(home-page "https://github.com/kennytilton/cells")
(synopsis "Common Lisp implementation of the dataflow programming paradigm")
(description
"Cells is a mature, stable extension to CLOS allowing one to create
classes whose instances can have slot values determined by instance-specific
formulas.")
(license license:llgpl))))
(define-public cl-cells
(sbcl-package->cl-source-package sbcl-cells))
(define-public ecl-cells
(sbcl-package->ecl-package sbcl-cells))