mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
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:
parent
22e0032666
commit
987a4c5d34
1 changed files with 35 additions and 0 deletions
|
@ -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"))
|
||||
|
|
Loading…
Reference in a new issue