diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-03-03 21:18:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-03-03 21:25:39 +0100 |
commit | da699774d4d839a45daa3ae3b9189331c490b315 (patch) | |
tree | 9e0af7d4a5ffd1c2ded525ba74848dcc69ea09c6 /gnu/packages/version-control.scm | |
parent | e343024dc46a8f513e78eec3d756b0d9f8bfd6f6 (diff) | |
download | patches-da699774d4d839a45daa3ae3b9189331c490b315.tar patches-da699774d4d839a45daa3ae3b9189331c490b315.tar.gz |
gnu: Add search path specifications for 'SSL_CERT_FILE' and 'GIT_SSL_CAINFO'.
* gnu/packages/openssl.scm (openssl)[native-search-paths]: Add
specification for 'SSL_CERT_FILE'.
* gnu/packages/version-control.scm (git)[native-search-paths]: Add
specification for 'GIT_SSL_CAINFO'.
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 9fc310d55d..71b3630607 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -204,6 +204,15 @@ as well as the classic centralized workflow.") `("PATH" ":" prefix ("$HOME/.guix-profile/libexec/git-core"))))) %standard-phases)))) + + (native-search-paths + ;; For HTTPS access, Git needs a single-file certificate bundle, specified + ;; with $GIT_SSL_CAINFO. + ;; FIXME: This variable designates a single file; it is not a search path. + (list (search-path-specification + (variable "GIT_SSL_CAINFO") + (files '("etc/ssl/certs/ca-certificates.crt"))))) + (synopsis "Distributed version control system") (description "Git is a free distributed version control system designed to handle |