diff options
author | Tobias Geerinckx-Rice via Guix-patches via <guix-patches@gnu.org> | 2020-03-15 01:25:56 +0100 |
---|---|---|
committer | Guix Patches Tester <> | 2020-03-15 00:27:18 +0000 |
commit | df0328cedc0a003f5b59ee4236ac6d5a1433772e (patch) | |
tree | c75d8b7f1a6466a21752a2c1f1aae6211366049f /gnu/packages | |
parent | 77386648da9c6bd0601d389ddb94ddba088d8b87 (diff) | |
download | patches-series-3167.tar patches-series-3167.tar.gz |
gnu: dehydrated: Declare cURL's native search paths.series-3167
* gnu/packages/tls.scm (dehydrated)[native-search-paths]: Use curl's.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tls.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index c8eea9c928..1cd6487e4a 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -10,7 +10,7 @@ ;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2017, 2018, 2019, 2020 Marius Bakke <mbakke@fastmail.com> -;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org> ;;; @@ -988,6 +988,13 @@ coding footprint.") (native-inputs `(("gzip" ,gzip) ("tar" ,tar))) + (native-search-paths + ;; XXX Using (package-native-search-paths curl) here recurses infinitely. + (list (search-path-specification + (variable "CURL_CA_BUNDLE") + (file-type 'regular) + (separator #f) + (files '("etc/ssl/certs/ca-certificates.crt"))))) (home-page "https://dehydrated.io/") (synopsis "Let's Encrypt/ACME client implemented as a shell script") (description "Dehydrated is a client for signing certificates with an |