gnu: Add cl-for.

* gnu/packages/lisp-xyz.scm: (sbcl-for, ecl-for, cl-for): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2021-05-26 23:02:50 +01:00 committed by Guillaume Le Vaillant
parent e7d5ea9275
commit 1ab3aab59a
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -17105,3 +17105,38 @@ (define-public ecl-djula
(define-public cl-djula
(sbcl-package->cl-source-package sbcl-djula))
(define-public sbcl-for
(let ((commit "2e4fcfa0f9c1d2f4559c58cef20ccefa50ba180d")
(revision "1"))
(package
(name "sbcl-for")
(version (git-version "1.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Shinmera/for")
(commit commit)))
(file-name (git-file-name "for" version))
(sha256
(base32 "1akz9ggh33x2cq3h0f1cd0p632v1mbagv3dzsb0r10bwg9lh3nmv"))))
(build-system asdf-build-system/sbcl)
(inputs
`(("documentation-utils" ,sbcl-documentation-utils)
("form-fiddle" ,sbcl-form-fiddle)
("lambda-fiddle" ,sbcl-lambda-fiddle)))
(home-page "https://shinmera.github.io/for/")
(synopsis "Extensible iteration macro library")
(description
"For is a library for an extensible iteration macro. It allows you to write
concise looping constructs similar to @code{loop} and @code{iterate}. Unlike
loop however it is extensible and sensible, and unlike iterate it does not
require code-walking and is easier to extend.")
(license license:zlib))))
(define-public ecl-for
(sbcl-package->ecl-package sbcl-for))
(define-public cl-for
(sbcl-package->cl-source-package sbcl-for))