>From 33f1fc6558e0a5ea4be224117908a6090318f6f7 Mon Sep 17 00:00:00 2001 From: Katherine Cox-Buday Date: Fri, 7 Jun 2019 16:03:47 -0500 Subject: [PATCH 11/15] gnu: Add cl-interpol. * gnu/packages/lisp.scm (cl-interpol): New variable. --- gnu/packages/lisp.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 90ea0797b6..5c3ebb6b57 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5903,3 +5903,42 @@ intending to program in Lisp.") (define-public ecl-gsll (sbcl-package->ecl-package sbcl-gsll)) + +(define-public sbcl-cl-interpol + (let ((commit "1fd288d861db85bc4677cff3cdd6af75fda1afb4") + (revision "1")) + (package + (name "sbcl-cl-interpol") + (version (git-version "0.2.6" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/edicl/cl-interpol.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hnikak52hmcq1r5f616m6qq1108qnkw80pja950nv1fq5p0ppjn")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("sbcl-cl-unicode" ,sbcl-cl-unicode) + ("sbcl-named-readtables" ,sbcl-named-readtables))) + (native-inputs + `(("sbcl-flexi-streams" ,sbcl-flexi-streams))) + (synopsis + "Common Lisp surface syntax niceties.") + (description + "CL-INTERPOL is a library for Common Lisp which modifies the +reader so that you can have interpolation within strings similar to +Perl or Unix Shell scripts. It also provides various ways to insert +arbitrary characters into literal strings even if your editor/IDE +doesn't support them.") + (home-page "https://edicl.github.io/cl-interpol/") + (license license:bsd-3)))) + +(define-public cl-cl-interpol + (sbcl-package->cl-source-package sbcl-cl-interpol)) + +(define-public ecl-cl-interpol + (sbcl-package->ecl-package sbcl-cl-interpol)) -- 2.17.1