gnu: GnuTLS: Update replacement to 3.6.14 [fixes CVE-2020-13777].
* gnu/packages/tls.scm (gnutls-3.6.13): Rename to ... (gnutls-3.6.14): ... this. Update to 3.6.14. (gnutls)[replacement]: Adjust accordingly. * gnu/packages/package-management.scm (guix)[propagated-inputs]: Likewise. * gnu/packages/vpn.scm (openconnect)[propagated-inputs]: Likewise.master
parent
fa7bd13e5b
commit
8951b9496b
|
@ -371,7 +371,7 @@ $(prefix)/etc/init.d\n")))
|
||||||
|
|
||||||
("glibc-utf8-locales" ,glibc-utf8-locales)))
|
("glibc-utf8-locales" ,glibc-utf8-locales)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("gnutls" ,(if (%current-target-system) gnutls-3.6.13 guile3.0-gnutls))
|
`(("gnutls" ,(if (%current-target-system) gnutls-3.6.14 guile3.0-gnutls))
|
||||||
("guile-gcrypt" ,guile-gcrypt)
|
("guile-gcrypt" ,guile-gcrypt)
|
||||||
("guile-json" ,guile-json-4)
|
("guile-json" ,guile-json-4)
|
||||||
("guile-sqlite3" ,guile-sqlite3)
|
("guile-sqlite3" ,guile-sqlite3)
|
||||||
|
|
|
@ -166,7 +166,7 @@ living in the same process.")
|
||||||
(package
|
(package
|
||||||
(name "gnutls")
|
(name "gnutls")
|
||||||
;; XXX Unversion openconnect's "gnutls" input when ungrafting.
|
;; XXX Unversion openconnect's "gnutls" input when ungrafting.
|
||||||
(replacement gnutls-3.6.13)
|
(replacement gnutls-3.6.14)
|
||||||
(version "3.6.12")
|
(version "3.6.12")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -254,20 +254,20 @@ required structures.")
|
||||||
(properties '((ftp-server . "ftp.gnutls.org")
|
(properties '((ftp-server . "ftp.gnutls.org")
|
||||||
(ftp-directory . "/gcrypt/gnutls")))))
|
(ftp-directory . "/gcrypt/gnutls")))))
|
||||||
|
|
||||||
(define-public gnutls-3.6.13
|
(define-public gnutls-3.6.14
|
||||||
(package
|
(package
|
||||||
(inherit gnutls)
|
(inherit gnutls)
|
||||||
(version "3.6.13")
|
(version "3.6.14")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnupg/gnutls/v"
|
(uri (string-append "mirror://gnupg/gnutls/v"
|
||||||
(version-major+minor version)
|
(version-major+minor version)
|
||||||
"/gnutls-3.6.13.tar.xz"))
|
"/gnutls-" version ".tar.xz"))
|
||||||
(patches (search-patches "gnutls-skip-trust-store-test.patch"
|
(patches (search-patches "gnutls-skip-trust-store-test.patch"
|
||||||
"gnutls-cross.patch"))
|
"gnutls-cross.patch"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0f1gnm0756qms5cpx6yn6xb8d3imc2gkqmygf12n9x6r8zs1s11j"))))
|
"0qwxsfizynly0ns537vnhnlm5lh03la4vbsmz675n0n7vqd7ac2n"))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(,@(if (%current-target-system) ;for cross-build
|
`(,@(if (%current-target-system) ;for cross-build
|
||||||
`(("guile" ,guile-3.0)) ;to create .go files
|
`(("guile" ,guile-3.0)) ;to create .go files
|
||||||
|
|
|
@ -261,7 +261,7 @@ the user specifically asks to proxy, so the @dfn{VPN} interface no longer
|
||||||
`(("libxml2" ,libxml2)
|
`(("libxml2" ,libxml2)
|
||||||
;; XXX ‘DTLS is insecure in GnuTLS v3.6.3 through v3.6.12.’
|
;; XXX ‘DTLS is insecure in GnuTLS v3.6.3 through v3.6.12.’
|
||||||
;; See <https://gitlab.com/gnutls/gnutls/-/issues/960>.
|
;; See <https://gitlab.com/gnutls/gnutls/-/issues/960>.
|
||||||
("gnutls" ,gnutls-3.6.13)
|
("gnutls" ,gnutls-3.6.14)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("lz4" ,lz4)
|
`(("lz4" ,lz4)
|
||||||
|
|
Reference in New Issue