mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: re2: Update to 2018-04-01.
* gnu/packages/regex.scm (re2): Update to 2018-04-01.
This commit is contained in:
parent
1b362016bc
commit
e3bb89a9b7
1 changed files with 4 additions and 7 deletions
|
@ -29,17 +29,15 @@ (define-module (gnu packages regex)
|
|||
(define-public re2
|
||||
(package
|
||||
(name "re2")
|
||||
(version "2018-03-01")
|
||||
(version "2018-04-01")
|
||||
(home-page "https://github.com/google/re2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"https://github.com/google/re2/archive/"
|
||||
version ".tar.gz"))
|
||||
(uri (string-append home-page "/archive/" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0y21g321a802xmxdbkfz0rkcark7ypglpb3jjqhf13m6s7lpxp2i"))))
|
||||
"04n9ngikvpikpshwcrl26sxgn8qbrymy3b5wlbsyfdhknx35951g"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:modules ((guix build gnu-build-system)
|
||||
|
@ -66,7 +64,6 @@ (define-public re2
|
|||
(delete-file (string-append (assoc-ref outputs "out")
|
||||
"/lib/libre2.a"))
|
||||
#t)))))
|
||||
(home-page "https://github.com/google/re2")
|
||||
(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
|
||||
|
|
Loading…
Reference in a new issue