diff options
author | Marius Bakke <marius@gnu.org> | 2021-06-20 14:34:14 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-07-23 17:26:43 +0200 |
commit | fff2e2d216c9907de3ef2bbde542f923295129de (patch) | |
tree | 5ef1e99142a043a673e13ebb8d64304d3b612d3b /gnu/packages | |
parent | 81d0ac2da6a11173ac6439c4dd777a658edf0b29 (diff) |
gnu: pcre2: Update to 10.37.
* gnu/packages/pcre.scm (pcre2): Update to 10.37.
[arguments]: Remove trailing #t.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/pcre.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm index 486992ee1d..54fcce55f0 100644 --- a/gnu/packages/pcre.scm +++ b/gnu/packages/pcre.scm @@ -84,14 +84,14 @@ POSIX regular expression API.") (define-public pcre2 (package (name "pcre2") - (version "10.35") + (version "10.37") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/pcre/pcre2/" version "/pcre2-" version ".tar.bz2")) (sha256 (base32 - "04s6kmk9qdd4rjz477h547j4bx7hfz0yalpvrm381rqc5ghaijww")))) + "0w6jaswjmg3bc0wsw6msn5bvk66p90kf2asnnj9rhll0idpak5ad")))) (build-system gnu-build-system) (inputs `(("bzip2" ,bzip2) ("readline" ,readline) @@ -110,8 +110,7 @@ POSIX regular expression API.") (add-after 'unpack 'patch-paths (lambda _ (substitute* "RunGrepTest" - (("/bin/echo") (which "echo"))) - #t))))) + (("/bin/echo") (which "echo")))))))) (synopsis "Perl Compatible Regular Expressions") (description "The PCRE library is a set of functions that implement regular expression |