[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/11: gnu: Add trivial-escapes.
From: |
guix-commits |
Subject: |
01/11: gnu: Add trivial-escapes. |
Date: |
Sun, 24 Jan 2021 05:45:34 -0500 (EST) |
ambrevar pushed a commit to branch master
in repository guix.
commit 99e6365c223c73ebe4afaa1c1bca94f8edcd6f0c
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Sat Jan 23 15:53:25 2021 +0100
gnu: Add trivial-escapes.
* gnu/packages/lisp-xyz.scm (cl-trivial-escapes, ecl-trivial-escapes,
sbcl-trivial-escapes): New variables.
---
gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 88e946e..6939f74 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -13285,3 +13285,37 @@ corresponding OS system functions are called.")
(define-public cl-ppath
(sbcl-package->cl-source-package sbcl-ppath))
+
+(define-public sbcl-trivial-escapes
+ (let ((commit "1eca78da2078495d09893be58c28b3aa7b8cc4d1"))
+ (package
+ (name "sbcl-trivial-escapes")
+ (version (git-version "1.2.0" "1" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/williamyaoh/trivial-escapes")
+ (commit commit)))
+ (file-name (git-file-name name commit))
+ (sha256
+ (base32 "0v6h8lk17iqv1qkxgqjyzn8gi6v0hvq2vmfbb01md3zjvjqxn6lr"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("named-readtables" ,sbcl-named-readtables)))
+ (native-inputs
+ `(("fiveam" ,sbcl-fiveam)))
+ (home-page "https://github.com/williamyaoh/trivial-escapes")
+ (synopsis "C-style escape directives for Common Lisp")
+ (description
+ "This Common Lisp library interprets escape characters the same way that
+most other programming language do.
+It provides four readtables. The default one lets you write strings like this:
+@code{#\"This string has\na newline in it!\"}.")
+ (license license:public-domain))))
+
+(define-public ecl-trivial-escapes
+ (sbcl-package->ecl-package sbcl-trivial-escapes))
+
+(define-public cl-trivial-escapes
+ (sbcl-package->cl-source-package sbcl-trivial-escapes))
- branch master updated (d94f753 -> dbbf67d), guix-commits, 2021/01/24
- 01/11: gnu: Add trivial-escapes.,
guix-commits <=
- 02/11: gnu: Add cl-indentify., guix-commits, 2021/01/24
- 09/11: gnu: Add trivial-do., guix-commits, 2021/01/24
- 07/11: gnu: Add language-codes., guix-commits, 2021/01/24
- 06/11: gnu: Add system-locale., guix-commits, 2021/01/24
- 08/11: gnu: Add multilang-documentation., guix-commits, 2021/01/24
- 05/11: gnu: Add jsown., guix-commits, 2021/01/24
- 10/11: gnu: Add common-lisp-jupyter., guix-commits, 2021/01/24
- 03/11: gnu: Add concrete-syntax-tree., guix-commits, 2021/01/24
- 04/11: gnu: Add eclector., guix-commits, 2021/01/24
- 11/11: gnu: emacs-evil-collection: Update to 20210124., guix-commits, 2021/01/24