mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
gnu: libressl: Update to 3.1.5 [security fix].
* gnu/packages/tls.scm (libressl): Update to 3.1.5.
This commit is contained in:
parent
c2c954afb2
commit
db20165728
1 changed files with 5 additions and 5 deletions
|
@ -10,7 +10,7 @@
|
||||||
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2017, 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017, 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017–2019, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
|
@ -553,18 +553,18 @@ required structures.")
|
||||||
(define-public libressl
|
(define-public libressl
|
||||||
(package
|
(package
|
||||||
(name "libressl")
|
(name "libressl")
|
||||||
(version "3.1.4")
|
(version "3.1.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://openbsd/LibreSSL/"
|
(uri (string-append "mirror://openbsd/LibreSSL/"
|
||||||
"libressl-" version ".tar.gz"))
|
"libressl-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1dnbbnr43jashxivnafmh9gnn57c7ayva788ba03z633k6f18k21"))))
|
"1504a1sf43frw43j14pij0q1f48rm5q86ggrlxxhw708qp7ds4rc"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; Do as if 'getentropy' was missing since older Linux kernels lack it
|
;; Do as if 'getentropy' were missing: Linux kernels before 3.17 lack its
|
||||||
;; and libc would return ENOSYS, which is not properly handled.
|
;; underlying 'getrandom' system call and ENOSYS isn't properly handled.
|
||||||
;; See <https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00235.html>.
|
;; See <https://lists.gnu.org/archive/html/guix-devel/2017-04/msg00235.html>.
|
||||||
'(#:configure-flags '("ac_cv_func_getentropy=no"
|
'(#:configure-flags '("ac_cv_func_getentropy=no"
|
||||||
;; Provide a TLS-enabled netcat.
|
;; Provide a TLS-enabled netcat.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue