diff options
author | Ludovic Courtès <[email protected]> | 2021-06-18 15:43:12 +0200 |
---|---|---|
committer | Ludovic Courtès <[email protected]> | 2021-06-18 17:40:10 +0200 |
commit | caf4a7a2770ef4d05a6e18f40d602e51da749ddc (patch) | |
tree | ccb3dd9fb430cc8c71c620671d90f4569dce0827 /gnu/packages/curl.scm | |
parent | 299c3c18603f4f92f187908ad48eeb6e5b3b6630 (diff) |
gnu: [email protected]: Provide a correct TLS priority string.
Fixes <https://bugs.gnu.org/49035>.
* gnu/packages/patches/curl-7.77-tls-priority-string.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/curl.scm (curl-7.77.0)[source]: Use it.
Diffstat (limited to 'gnu/packages/curl.scm')
-rw-r--r-- | gnu/packages/curl.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index 76b9b9840c..d368c4140e 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2014, 2015 Andreas Enge <[email protected]> ;;; Copyright © 2015 Mark H Weaver <[email protected]> ;;; Copyright © 2015 Tomáš Čech <[email protected]> -;;; Copyright © 2015, 2020 Ludovic Courtès <[email protected]> +;;; Copyright © 2015, 2020, 2021 Ludovic Courtès <[email protected]> ;;; Copyright © 2016, 2017, 2019 Leo Famulari <[email protected]> ;;; Copyright © 2017, 2019, 2020 Marius Bakke <[email protected]> ;;; Copyright © 2017 Efraim Flashner <[email protected]> @@ -161,7 +161,8 @@ tunneling, and so on.") (inherit (package-source curl)) (uri (string-append "https://curl.haxx.se/download/curl-" version ".tar.xz")) - (patches (search-patches "curl-7.76-use-ssl-cert-env.patch")) + (patches (search-patches "curl-7.76-use-ssl-cert-env.patch" + "curl-7.77-tls-priority-string.patch")) (sha256 (base32 "0jsrc97vbghvljic997r9nypc9qqddcil2lzvv032br8ahn5hr0g")))))) |