[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#33753] [PATCH 2/3] gnu: Add sbcl-percent-encoding.
From: |
Nam Nguyen |
Subject: |
[bug#33753] [PATCH 2/3] gnu: Add sbcl-percent-encoding. |
Date: |
Mon, 24 Dec 2018 01:21:24 -0800 |
* gnu/packages/lisp.scm (sbcl-percent-encoding): New variable.
---
gnu/packages/lisp.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 711c57cbc..84da001b2 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1502,6 +1502,30 @@ the string into one of the standard Common Lisp number
types, if possible, or
else @code{parse-number} signals an error of type @code{invalid-number}.")
(license license:bsd-3)))
+(define-public sbcl-percent-encoding
+ (package
+ (name "sbcl-percent-encoding")
+ (version "20121013")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"http://beta.quicklisp.org/archive/percent-encoding/"
+ "2012-10-13/percent-encoding-"
+ version "-git.tgz"))
+ (sha256
+ (base32
+ "1dlf77c1iha1d7h6fzmv090mf8p6w20fqjrd5zcbh2kiicyabhfb"))))
+ (inputs
+ `(("sbcl-anaphora" ,sbcl-anaphora)
+ ("sbcl-babel" ,sbcl-babel)
+ ("sbcl-fiveam" ,sbcl-fiveam)))
+ (build-system asdf-build-system/sbcl)
+ (home-page "https://common-lisp.net/project/percent-encoding/")
+ (synopsis "Library for percent-encoding (URI encoding) for Common Lisp")
+ (description "@code{percent-encoding} is a URI encoding library for
+Common Lisp, as defined in RFC 3986.")
+ (license license:expat)))
+
(define-public sbcl-iterate
(package
(name "sbcl-iterate")
--
2.20.1
[bug#33753] [PATCH 1/3] gnu: Add stumpwm modules., Nam Nguyen, 2018/12/24
[bug#33753] [PATCH 1/3] gnu: Add stumpwm modules., Nam Nguyen, 2018/12/25