From a9f69e40a798f2a9347c8969dc2f68c08712f8e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simen=20Endsj=C3=B8?= Date: Thu, 11 Sep 2025 21:32:00 +0200 Subject: [PATCH] gnu: Add sbcl-macro-html. * gnu/packages/lisp-xyz.scm (sbcl-macro-html, ecl-macro-html, cl-macro-html): New variables. Change-Id: I6254f297c5d10a9e4039515287fc7b422a688798 Signed-off-by: jgart --- gnu/packages/lisp-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 4ae5e43b27cd10f97d6e65c055c819f19d2ec0e4..3fa37bf870091361b5b1da0338bc6c9215a2dcca 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -21527,6 +21527,37 @@ about the machine, process, etc.") (define-public ecl-machine-state (sbcl-package->ecl-package sbcl-machine-state)) +(define-public sbcl-macro-html + (let ((commit "c769b5db9da6dd61365a21fc61ba07ea0f5f1963") + (revision "0")) + (package + (name "sbcl-macro-html") + (version (git-version "1.2" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/eugeneia/macro-html") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05gzgijz8r3dw3ilz7d5i0g0mbcyv9k8w2dgvw7n478njp1gfj4b")))) + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-named-readtables)) + (home-page "https://github.com/eugeneia/macro-html") + (synopsis "HTML generation library") + (description "Aims to be fast, modular, cachable and concise. It does so +by defining each tag as a macro which expands to code printing the respective +HTML source. Also employs a DSL for element attributes.") + (license license:agpl1)))) + +(define-public ecl-macro-html + (sbcl-package->ecl-package sbcl-macro-html)) + +(define-public cl-macro-html + (sbcl-package->cl-source-package sbcl-macro-html)) + (define-public sbcl-magic-ed (let ((commit "30bb27832d4e3e362578e7320934638f9889a8c4") (revision "1"))