gnu: re2: Update to 2017-01-01.
* gnu/packages/regex.scm (re2): Update to 2017-01-01. [arguments]: End 'delete-static-library' phase on #t.
This commit is contained in:
parent
d8e85b2032
commit
4a9c4a55ac
|
@ -27,7 +27,7 @@
|
||||||
(define-public re2
|
(define-public re2
|
||||||
(package
|
(package
|
||||||
(name "re2")
|
(name "re2")
|
||||||
(version "2016-11-01")
|
(version "2017-01-01")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0scn3rimfxz0kqxxasap04kv9cbzjsgi7krkqmyhbi710fgr9vh1"))))
|
"0yij1ajh66h3pj3kfz7y0ldrsww8rlpjzaavyr5lchl98as1jq74"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:test-target "test"
|
`(#:test-target "test"
|
||||||
|
@ -50,7 +50,8 @@
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
;; No make target for shared-only; delete the static version.
|
;; No make target for shared-only; delete the static version.
|
||||||
(delete-file (string-append (assoc-ref outputs "out")
|
(delete-file (string-append (assoc-ref outputs "out")
|
||||||
"/lib/libre2.a")))))))
|
"/lib/libre2.a"))
|
||||||
|
#t)))))
|
||||||
(home-page "https://github.com/google/re2")
|
(home-page "https://github.com/google/re2")
|
||||||
(synopsis "Fast, safe, thread-friendly regular expression engine")
|
(synopsis "Fast, safe, thread-friendly regular expression engine")
|
||||||
(description "RE2 is a fast, safe, thread-friendly alternative to
|
(description "RE2 is a fast, safe, thread-friendly alternative to
|
||||||
|
|
Loading…
Reference in New Issue