diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-05-14 23:37:14 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-05-15 21:22:05 +0200 |
commit | 63657335554eba6c70828b105a19ba7236f6ba2a (patch) | |
tree | f570245e7b02aa995714b62522c0542b7373d4e6 /doc | |
parent | 9b22c4dd5e7ced57c26897b97c9b853cca3eb042 (diff) | |
download | guix-63657335554eba6c70828b105a19ba7236f6ba2a.tar guix-63657335554eba6c70828b105a19ba7236f6ba2a.tar.gz |
doc: Document certificate environment variable needed for R.
* doc/guix.texi (X.509 Certificates): Document R as a special case.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 43ed051493..0b2742c6d9 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -14932,6 +14932,19 @@ $ export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" $ export GIT_SSL_CAINFO="$SSL_CERT_FILE" @end example +As another example, R requires the @code{CURL_CA_BUNDLE} environment +variable to point to a certificate bundle, so you would have to run +something like this: + +@example +$ guix package -i nss-certs +$ export CURL_CA_BUNDLE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" +@end example + +For other applications you may want to look up the required environment +variable in the relevant documentation. + + @node Name Service Switch @subsection Name Service Switch |