mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: pcre: Update to 8.38.
* gnu/packages/pcre.scm (pcre): Update to 8.38. Add source URI for main FTP site.
This commit is contained in:
parent
821060f3f6
commit
dae36ca558
1 changed files with 8 additions and 4 deletions
|
@ -29,14 +29,18 @@ (define-module (gnu packages pcre)
|
||||||
(define-public pcre
|
(define-public pcre
|
||||||
(package
|
(package
|
||||||
(name "pcre")
|
(name "pcre")
|
||||||
(version "8.37")
|
(version "8.38")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/pcre/pcre/"
|
(uri (list
|
||||||
version "/pcre-" version ".tar.bz2"))
|
(string-append "ftp://ftp.csx.cam.ac.uk"
|
||||||
|
"/pub/software/programming/pcre/"
|
||||||
|
"pcre-" version ".tar.bz2")
|
||||||
|
(string-append "mirror://sourceforge/pcre/pcre/"
|
||||||
|
version "/pcre-" version ".tar.bz2")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"17bqykp604p7376wj3q2nmjdhrb6v1ny8q08zdwi7qvc02l9wrsi"))))
|
"1pvra19ljkr5ky35y2iywjnsckrs9ch2anrf5b0dc91hw8v2vq5r"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("bzip2" ,bzip2)
|
(inputs `(("bzip2" ,bzip2)
|
||||||
("readline" ,readline)
|
("readline" ,readline)
|
||||||
|
|
Loading…
Reference in a new issue