[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
13/26: gnu: Add html-encode.
From: |
Pierre Neidhardt |
Subject: |
13/26: gnu: Add html-encode. |
Date: |
Fri, 24 Aug 2018 09:14:05 -0400 (EDT) |
ambrevar pushed a commit to branch wip-next-browser
in repository guix.
commit 46c37e7ba02f4be9ca38f4d06414f714367ea99e
Author: Pierre Neidhardt <address@hidden>
Date: Fri Aug 24 11:46:45 2018 +0200
gnu: Add html-encode.
* gnu/packages/lisp.scm (cl-html-encode, ecl-html-encode,
sbcl-html-encode): New variables.
---
gnu/packages/lisp.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 4cfa61c..b4f1692 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1804,3 +1804,30 @@ satisfying the test.")
(define-public ecl-split-sequence
(sbcl-package->ecl-package sbcl-split-sequence))
+
+(define-public sbcl-html-encode
+ (package
+ (name "sbcl-html-encode")
+ (version "1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
+ version ".tgz"))
+ (sha256
+ (base32
+ "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
+ (file-name (string-append "colorize" version "-checkout"))))
+ (build-system asdf-build-system/sbcl)
+ (synopsis "Common Lisp library for encoding text in various web-savvy
encodings")
+ (description
+ "A library for encoding text in various web-savvy encodings.")
+ (home-page "http://quickdocs.org/html-encode/")
+ (license license:expat)))
+
+(define-public cl-html-encode
+ (sbcl-package->cl-source-package sbcl-html-encode))
+
+(define-public ecl-html-encode
+ (sbcl-package->ecl-package sbcl-html-encode))
- 14/26: gnu: Add colorize., (continued)
- 14/26: gnu: Add colorize., Pierre Neidhardt, 2018/08/24
- 12/26: gnu: Add split-sequence., Pierre Neidhardt, 2018/08/24
- 15/26: gnu: Add 3bmd., Pierre Neidhardt, 2018/08/24
- 09/26: gnu: Add jpl-queues., Pierre Neidhardt, 2018/08/24
- 26/26: gnu: Add next-browser (DRAFT)., Pierre Neidhardt, 2018/08/24
- 21/26: gnu: Add named-readtables., Pierre Neidhardt, 2018/08/24
- 25/26: gnu: Add cl-string-match., Pierre Neidhardt, 2018/08/24
- 17/26: gnu: Add cl-fad., Pierre Neidhardt, 2018/08/24
- 16/26: gnu: Add 3bmd-ext-code-blocks., Pierre Neidhardt, 2018/08/24
- 18/26: gnu: Add rt., Pierre Neidhardt, 2018/08/24
- 13/26: gnu: Add html-encode.,
Pierre Neidhardt <=
- 24/26: gnu: Add ascii-strings., Pierre Neidhardt, 2018/08/24