diff options
author | Foo Chuan Wei <chuanwei.foo@hotmail.com> | 2021-11-18 06:48:31 +0000 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2021-11-20 14:55:16 +0100 |
commit | 5b96e9651029d68c17a05e9ca75b25a0f129ecca (patch) | |
tree | b2a33e3e6d932d23f2d49433b88acd635bce105d /gnu/packages | |
parent | 118382b2a4e7c1d65c216f8c674c17b86ad76a3f (diff) | |
download | guix-5b96e9651029d68c17a05e9ca75b25a0f129ecca.tar.gz guix-5b96e9651029d68c17a05e9ca75b25a0f129ecca.zip |
gnu: Add cl-flute.
* gnu/packages/lisp-xyz.scm (cl-flute, ecl-flute, sbcl-flute):
New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index d9eb5dc6a0..f891164fc8 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -17471,6 +17471,40 @@ from the Let Over Lambda book, including community updates.") (define-public ecl-let-over-lambda (sbcl-package->ecl-package sbcl-let-over-lambda)) +(define-public sbcl-flute + (let ((commit "90ebcd6e82f637f49b6de7d625ccc51ec4c92900") + (revision "1")) + (package + (name "sbcl-flute") + (version (git-version "0.2-dev" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ailisp/flute") + (commit commit))) + (file-name (git-file-name "cl-flute" version)) + (sha256 + (base32 "0q8jhp040cvpppyn820mm6a550yfxyr1lar298x13c42mm807f4f")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("assoc-utils" ,sbcl-assoc-utils) + ("let-over-lambda" ,sbcl-let-over-lambda))) + (native-inputs + `(("fiveam" ,sbcl-fiveam))) + (home-page "https://github.com/ailisp/flute") + (synopsis "HTML5 generation library in Common Lisp") + (description + "Flute is an easily composable HTML5 generation library in Common +Lisp.") + (license license:expat)))) + +(define-public cl-flute + (sbcl-package->cl-source-package sbcl-flute)) + +(define-public ecl-flute + (sbcl-package->ecl-package sbcl-flute)) + (define-public sbcl-cl-posix-mqueue (let ((commit "8977370c7206d1f62bd1be80f4254af40654b83f") (revision "1")) |