mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add cl-ppcre.
* gnu/packages/lisp.scm (cl-ppcre, sbcl-cl-pprcre, ecl-cl-pprcre): New variables. Signed-off-by: 宋文武 <iyzsong@gmail.com>
This commit is contained in:
parent
3c55c780f9
commit
5aa608a7e8
1 changed files with 28 additions and 0 deletions
|
@ -672,3 +672,31 @@ (define-public cl-flexi-streams
|
|||
|
||||
(define-public ecl-flexi-streams
|
||||
(sbcl-package->ecl-package sbcl-flexi-streams))
|
||||
|
||||
(define-public sbcl-cl-ppcre
|
||||
(package
|
||||
(name "sbcl-cl-ppcre")
|
||||
(version "2.0.11")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/edicl/cl-ppcre/archive/v"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1i7daxf0wnydb0pgwiym7qh2wy70n14lxd6dyv28sy0naa8p31gd"))
|
||||
(file-name (string-append "cl-ppcre-" version ".tar.gz"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs `(("tests:cl-flexi-streams" ,sbcl-flexi-streams)))
|
||||
(synopsis "Portable regular expression library for Common Lisp")
|
||||
(description "CL-PPCRE is a portable regular expression library for Common
|
||||
Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
|
||||
compatible with ANSI-compliant Common Lisp implementations.")
|
||||
(home-page "http://weitz.de/cl-ppcre/")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public cl-ppcre
|
||||
(sbcl-package->cl-source-package sbcl-cl-ppcre))
|
||||
|
||||
(define-public ecl-cl-ppcre
|
||||
(sbcl-package->ecl-package sbcl-cl-ppcre))
|
||||
|
|
Loading…
Reference in a new issue