snape pushed a commit to branch master
in repository guix.
commit 0e4cee0eba9578505e6ce6f1b78e642614856594
Author: Clément Lassieur <[email protected]>
Date: Tue Nov 12 00:38:30 2019 +0100
gnu: lynx: Fix errors with TLS 1.3 hosts.
Fixes <https://bugs.gnu.org/38171>.
Reported by Bengt Richter <[email protected]>.
See <https://lists.gnu.org/archive/html/lynx-dev/2018-12/msg00009.html>.
* gnu/packages/web-browsers.scm (lynx)[inputs, arguments]: Replace GnuTLS
with
OpenSSL.
---
gnu/packages/web-browsers.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 1b41aec..2453162 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2018 Rutger Helling <[email protected]>
;;; Copyright © 2018 Timo Eisenmann <[email protected]>
;;; Copyright © 2018 Pierre Neidhardt <[email protected]>
+;;; Copyright © 2019 Clément Lassieur <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -222,7 +223,7 @@ and the GTK+ toolkit.")
("perl" ,perl)))
(inputs `(("ncurses" ,ncurses)
("libidn" ,libidn)
- ("gnutls" ,gnutls)
+ ("openssl" ,openssl)
("libgcrypt" ,libgcrypt)
("unzip" ,unzip)
("zlib" ,zlib)
@@ -230,12 +231,12 @@ and the GTK+ toolkit.")
("bzip2" ,bzip2)))
(arguments
`(#:configure-flags
- (let ((gnutls (assoc-ref %build-inputs "gnutls")))
+ (let ((openssl (assoc-ref %build-inputs "openssl")))
`("--with-pkg-config"
"--with-screen=ncurses"
"--with-zlib"
"--with-bzlib"
- ,(string-append "--with-gnutls=" gnutls)
+ ,(string-append "--with-ssl=" openssl)
;; "--with-socks5" ; XXX TODO
"--enable-widec"
"--enable-ascii-ctypes"