gnu: Add cl-lisp-preprocessor.

* gnu/packages/lisp-xyz.scm (cl-lisp-preprocessor, ecl-lisp-preprocessor,
sbcl-lisp-preprocessor): New variables.
Co-authored-by: Ada Stevenson <adanskana@gmail.com>

Change-Id: Ice5358677e62232b67b62a3f1520686bc96a79a8
This commit is contained in:
jgart 2024-09-26 12:00:37 -05:00
parent 22e0032666
commit 987a4c5d34
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -19408,6 +19408,41 @@ (define-public cl-lisp-pay
(define-public ecl-lisp-pay
(sbcl-package->ecl-package sbcl-lisp-pay))
(define-public sbcl-lisp-preprocessor
(let ((commit "cbed5952f3d98c84448c52d12255df9580451383")
(revision "0"))
(package
(name "sbcl-lisp-preprocessor")
(version (git-version "0.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cxxxr/lisp-preprocessor/")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0v0qhawcvgbxk06nfwyvcqwmqvzn2svq80l2rb12myr0znschhpi"))))
(build-system asdf-build-system/sbcl)
(native-inputs (list sbcl-rove))
(inputs
(list
sbcl-alexandria
sbcl-trivial-gray-streams
sbcl-split-sequence
sbcl-trivia
sbcl-cl-ppcre))
(home-page "https://github.com/cxxxr/lisp-preprocessor")
(synopsis "Common Lisp embedded template engine")
(description "This package provices an embedded template engine for Common Lisp.")
(license license:expat))))
(define-public cl-lisp-preprocessor
(sbcl-package->cl-source-package sbcl-lisp-preprocessor))
(define-public ecl-lisp-preprocessor
(sbcl-package->ecl-package sbcl-lisp-preprocessor))
(define-public sbcl-lisp-stat
(let ((commit "357a0d2b5f68a5ff925776235c2b7455e12b78ba")
(revision "0"))