gnu: guix: Add search path spec for 'SSL_CERT_DIR'.

* gnu/packages/package-management.scm (guix)[native-search-paths]: Add
'SSL_CERT_DIR'.
This commit is contained in:
Ludovic Courtès 2021-01-22 08:35:29 +01:00
parent 7df3ab0f0d
commit dd988726fc
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -424,7 +424,14 @@ (define code
(native-search-paths
(list (search-path-specification
(variable "GUIX_EXTENSIONS_PATH")
(files '("share/guix/extensions")))))
(files '("share/guix/extensions")))
;; (guix git) and (guix build download) honor this variable whose
;; name comes from OpenSSL.
(search-path-specification
(variable "SSL_CERT_DIR")
(separator #f) ;single entry
(files '("etc/ssl/certs")))))
(home-page "https://www.gnu.org/software/guix/")
(synopsis "Functional package manager for installed software packages and versions")