3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: re2: Update to 2022-02-01.

* gnu/packages/regex.scm (re2): Update to 2022-02-01.
This commit is contained in:
Marius Bakke 2022-02-11 00:52:47 +01:00
parent 9b0abb52ac
commit e2c8868301
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -31,7 +31,7 @@
(define-public re2
(package
(name "re2")
(version "2020-11-01")
(version "2022-02-01")
(home-page "https://github.com/google/re2")
(source (origin
(method git-fetch)
@ -39,7 +39,7 @@
(file-name (git-file-name name version))
(sha256
(base32
"0ii51fpp6fn51x4qyd99sy4r122s8ayh4x1srwhhijxlh8mzla5k"))))
"1gzdqy5a0ln9rwd8kmwbgis6qin63hapicwb35xkbnj3y84jj6yx"))))
(build-system gnu-build-system)
(arguments
`(#:modules ((guix build gnu-build-system)
@ -64,8 +64,7 @@
(lambda* (#:key outputs #:allow-other-keys)
;; No make target for shared-only; delete the static version.
(delete-file (string-append (assoc-ref outputs "out")
"/lib/libre2.a"))
#t)))))
"/lib/libre2.a")))))))
(synopsis "Fast, safe, thread-friendly regular expression engine")
(description "RE2 is a fast, safe, thread-friendly alternative to
backtracking regular expression engines like those used in PCRE, Perl and