gnu: Add cl-percent-encoding.

* gnu/packages/lisp-xyz.scm (cl-percent-encoding, ecl-percent-encoding,
  sbcl-percent-encoding): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
cage 2021-03-03 16:24:34 +01:00 committed by Guillaume Le Vaillant
parent f934892cbb
commit 09f60f9e3e
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -15026,3 +15026,36 @@ (define-public ecl-cl-html5-parser
(define-public cl-html5-parser
(sbcl-package->cl-source-package sbcl-cl-html5-parser))
(define-public sbcl-percent-encoding
(let ((commit "c1224e22bc8048fbd3ebbc9329715a0c1b673170")
(revision "1"))
(package
(name "sbcl-percent-encoding")
(version (git-version "0.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/llibra/percent-encoding")
(commit commit)))
(file-name (git-file-name "percent-encoding" version))
(sha256
(base32 "0q1lh3sa6mkjr5gcdkgimkpc29rgf9cjhv90f61h8ridj28grq0h"))))
(build-system asdf-build-system/sbcl)
(native-inputs
`(("fiveam" ,sbcl-fiveam)))
(inputs
`(("anaphora" ,sbcl-anaphora)
("babel" ,sbcl-babel)))
(synopsis "RFC 3986 percent-encoding library")
(description
"This is a Common Lisp library providing RFC 3986 percent-encoding.")
(home-page "https://github.com/llibra/percent-encoding")
(license license:expat))))
(define-public ecl-percent-encoding
(sbcl-package->ecl-package sbcl-percent-encoding))
(define-public cl-percent-encoding
(sbcl-package->cl-source-package sbcl-percent-encoding))