summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve George <steve@futurile.net>2025-05-08 21:20:18 +0100
committerSteve George <steve@futurile.net>2025-06-19 16:59:07 +0100
commitc6789aa29d0818b2219bc0e99e5ec426f1e2f5a3 (patch)
tree8beb10d2c04383b5bf7032fa109ae9b96e00f1ca
parent4031b50539b066bf3478fcf234d9799dff3b50c2 (diff)
gnu: Update re2c.
* gnu/packages/re2c.scm (re2c): Update to 4.2. Change-Id: I6867fbead378ec3e1c3c5337030c71a78ace7578 Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r--gnu/packages/re2c.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/re2c.scm b/gnu/packages/re2c.scm
index eb9daf4622..7ff0dd9e4b 100644
--- a/gnu/packages/re2c.scm
+++ b/gnu/packages/re2c.scm
@@ -28,7 +28,7 @@
(define-public re2c
(package
(name "re2c")
- (version "2.2")
+ (version "4.2")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/skvadrik/" name
@@ -36,7 +36,7 @@
name "-" version ".tar.xz"))
(sha256
(base32
- "1nkbv3bxz1kwwql1pdlnj3lxy5h2vsaif393ivb5b9d8610mxi0g"))))
+ "07ysqgdm0h566a8lwnpdgycp93vz7zskzihsgah3bla0ycj2pp69"))))
(build-system gnu-build-system)
(home-page "https://re2c.org/")
(native-inputs
@@ -44,9 +44,9 @@
(synopsis "Lexer generator for C/C++")
(description
"@code{re2c} generates minimalistic hard-coded state machine (as opposed
-to full-featured table-based lexers). Flexible API allows generated code
-to be wired into virtually any environment. Instead of exposing traditional
+to full-featured table-based lexers). A flexible API allows generated code
+to be wired into virtually any environment. Instead of exposing a traditional
@code{yylex()} style API, re2c exposes its internals. Be sure to take a look
-at examples, they cover a lot of real-world cases and shed some light on dark
-corners of re2c API.")
+at the examples, as they cover a lot of real-world cases and shed some light on
+dark corners of the re2c API.")
(license public-domain)))