guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d2cf89a674a34077650e4c3b11cc5ba0890de851
Author: Malte Frank Gerdes <[email protected]>
AuthorDate: Fri Sep 11 14:15:34 2026 +0200

    gnu: chicken: Add chicken-regex.
    
    * gnu/packages/chicken.scm (chicken-regex): New variable.
    
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/chicken.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/chicken.scm b/gnu/packages/chicken.scm
index 648348c7847..415991abba7 100644
--- a/gnu/packages/chicken.scm
+++ b/gnu/packages/chicken.scm
@@ -576,6 +576,27 @@ macros.")
     (description #f)
     (license license:bsd-3)))
 
+(define-public chicken-regex
+  (package
+    (name "chicken-regex")
+    (version "2.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (egg-uri "regex" version))
+       (sha256
+        (base32 "1v6xpkd6s5y6svg106v721an27js7cz5cl2h9y88pmchhvl066mm"))))
+    (build-system chicken-build-system)
+    (arguments
+     (list #:egg-name "regex"))
+    (home-page "https://wiki.call-cc.org/egg/regex";)
+    (synopsis "Compatibility library for old regular expression API")
+    (description "This extension provides the regular expression API that used
+to be available in CHICKEN releases before version 4.6.2.  It is a thin wrapper
+around the functionality provided by irregex and is mostly intended to keep old
+code working.")
+    (license license:bsd-3)))
+
 (define-public chicken-silex
   (package
     (name "chicken-silex")

Reply via email to