diff options
author | Paul A. Patience <paul@apatience.com> | 2022-04-21 01:52:39 +0000 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-04-24 12:08:16 +0200 |
commit | 5e343e35703118bffc2587f60c403532c6e430ab (patch) | |
tree | b770e269633e0ff1ef4f4981c1706af33975dd08 /gnu | |
parent | 3ab9bd077849912b0d3518d1ccc375a9296fd99a (diff) | |
download | guix-5e343e35703118bffc2587f60c403532c6e430ab.tar guix-5e343e35703118bffc2587f60c403532c6e430ab.tar.gz |
gnu: Add cl-boost-re.
* gnu/packages/lisp-xyz.scm (sbcl-boost-re, cl-boost-re,
ecl-boost-re): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index b7b9548ab3..be0fb737d0 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -695,6 +695,37 @@ expression library for Common Lisp. It is a non-recursive, backtracing VM.") (define-public ecl-boost-parse (sbcl-package->ecl-package sbcl-boost-parse)) +(define-public sbcl-boost-re + (let ((commit "d279fc58abf76d0c40aa6cde42e17a0591bc2c5d") + (revision "0")) + (package + (name "sbcl-boost-re") + (version (git-version "1.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cl-boost/re") + (commit commit))) + (file-name (git-file-name "cl-boost-re" version)) + (sha256 + (base32 "1h9c2rdhw6m1pm67gqbj46y2vb1kc3i1c9y3l4qhgfz14dbk80a2")))) + (build-system asdf-build-system/sbcl) + (inputs + (list sbcl-boost-parse)) + (home-page "https://github.com/cl-boost/re") + (synopsis "Lua-style string pattern matching for Common Lisp") + (description + "BOOST-RE is a small, portable, lightweight, and quick, regular +expression library for Common Lisp. It is a non-recursive, backtracking VM.") + (license license:asl2.0)))) + +(define-public cl-boost-re + (sbcl-package->cl-source-package sbcl-boost-re)) + +(define-public ecl-boost-re + (sbcl-package->ecl-package sbcl-boost-re)) + (define-public sbcl-ubiquitous (let ((commit "35eb7bd9e1b3daee1705f6b41260775180cce8af") (revision "1")) |