mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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:
parent
7df3ab0f0d
commit
dd988726fc
1 changed files with 8 additions and 1 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue