all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 59297@debbugs.gnu.org
Cc: jgart <jgart@dismail.de>
Subject: [bug#59297] [PATCH] gnu: Add cl-closure-template.
Date: Tue, 15 Nov 2022 21:57:32 -0600	[thread overview]
Message-ID: <20221116035732.8508-1-jgart@dismail.de> (raw)

* gnu/packages/lisp-xyz.scm (cl-closure-template, ecl-closure-template,
sbcl-closure-template): New variables.
---
 gnu/packages/lisp-xyz.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f23b4a70bb..8904eb7c8b 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24131,6 +24131,44 @@ (define-public cl-draw-cons-tree
 (define-public ecl-draw-cons-tree
   (sbcl-package->ecl-package sbcl-draw-cons-tree))
 
+(define-public sbcl-closure-template
+  ;; There are no releases since 2015.
+  (let ((commit "f1983aa525045691e128027d2a2d74831c873d6e")
+        (revision "0"))
+  (package
+   (name "sbcl-closure-template")
+   (version (git-version "0.2.1" revision commit))
+   (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/archimag/cl-closure-template")
+             (commit commit)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "16h0fs6bjjd4n9pbkwcprpgyj26vsw2akk3q08m7xmsmqi05dppv"))))
+   (build-system asdf-build-system/sbcl)
+   (native-inputs (list sbcl-lift))
+   (inputs
+     (list sbcl-babel
+           sbcl-parse-number
+           sbcl-esrap
+           sbcl-iterate
+           sbcl-closer-mop
+           sbcl-split-sequence
+           sbcl-alexandria))
+   (synopsis "Lisp implementation of Google Closure Templates")
+   (description
+"Common Lisp implementation of Google Closure Templates.")
+   (home-page "https://github.com/archimag/cl-closure-template/")
+   (license license:gpl2+))))
+
+(define-public cl-closure-template
+  (sbcl-package->cl-source-package sbcl-closure-template))
+
+(define-public ecl-closure-template
+  (sbcl-package->ecl-package sbcl-closure-template))
+
 (define-public sbcl-cl-morse
   (package
     (name "sbcl-cl-morse")
-- 
2.38.1





             reply	other threads:[~2022-11-16  3:59 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-16  3:57 jgart via Guix-patches via [this message]
2022-11-16  9:54 ` bug#59297: [PATCH] gnu: Add cl-closure-template Guillaume Le Vaillant

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221116035732.8508-1-jgart@dismail.de \
    --to=guix-patches@gnu.org \
    --cc=59297@debbugs.gnu.org \
    --cc=jgart@dismail.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.