gnu: boost: Update to 1.69.0.
* gnu/packages/boost.scm (boost): Update to 1.69.0. [source](uri): Add mirror.master
parent
4cb9b72633
commit
b8e43e61a3
|
@ -45,16 +45,19 @@
|
||||||
(define-public boost
|
(define-public boost
|
||||||
(package
|
(package
|
||||||
(name "boost")
|
(name "boost")
|
||||||
(version "1.68.0")
|
(version "1.69.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (let ((version-with-underscores
|
||||||
"mirror://sourceforge/boost/boost/" version "/boost_"
|
(string-map (lambda (x) (if (eq? x #\.) #\_ x)) version)))
|
||||||
(string-map (lambda (x) (if (eq? x #\.) #\_ x)) version)
|
(list (string-append "mirror://sourceforge/boost/boost/" version
|
||||||
".tar.bz2"))
|
"/boost_" version-with-underscores ".tar.bz2")
|
||||||
|
(string-append "https://dl.bintray.com/boostorg/release/"
|
||||||
|
version "/source/boost_"
|
||||||
|
version-with-underscores ".tar.bz2"))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dyqsr9yb01y0nnjdq9b8q5s2kvhxbayk34832k5cpzn7jy30qbz"))
|
"01j4n142dz20lcgqji8d8hspp04p1nv7m8i6dz8w5lchfdhx8clg"))
|
||||||
(patches (search-patches "boost-fix-icu-build.patch"))))
|
(patches (search-patches "boost-fix-icu-build.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs `(("icu4c" ,icu4c)
|
(inputs `(("icu4c" ,icu4c)
|
||||||
|
|
Reference in New Issue