[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/13: gnu: guix: Use $SSL_CERT_DIR.
From: |
guix-commits |
Subject: |
11/13: gnu: guix: Use $SSL_CERT_DIR. |
Date: |
Fri, 13 May 2022 11:52:22 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit d4a0dcb7379e92d1adc8e846eb5ca5c513389763
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Sat May 7 08:37:36 2022 +0000
gnu: guix: Use $SSL_CERT_DIR.
* gnu/packages/package-management.scm (guix)[native-search-paths]: Use the
$SSL_CERT_DIR from (guix search-paths) instead of a
local copy.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/package-management.scm | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/package-management.scm
b/gnu/packages/package-management.scm
index 10b0e010de..908efee821 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -121,6 +121,7 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
+ #:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE))
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
@@ -473,14 +474,9 @@ $(prefix)/etc/openrc\n")))
(list (search-path-specification
(variable "GUIX_EXTENSIONS_PATH")
(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")))))
-
+ $SSL_CERT_DIR))
(home-page "https://www.gnu.org/software/guix/")
(synopsis "Functional package manager for installed software packages
and versions")
(description
- 02/13: gnu: guile-ics: Update to 0.2.1, (continued)
- 02/13: gnu: guile-ics: Update to 0.2.1, guix-commits, 2022/05/13
- 07/13: gnu: openssl: Use $SSL_CERT_DIR/$SSL_CERT_FILE., guix-commits, 2022/05/13
- 12/13: gnu: poke: Update to 2.3., guix-commits, 2022/05/13
- 13/13: gnu: xonsh: Update to 0.12.4., guix-commits, 2022/05/13
- 06/13: search-paths: Define $SSL_CERT_DIR and $SSL_CERT_FILE., guix-commits, 2022/05/13
- 08/13: gnu: cuirass: Use $SSL_CERT_DIR., guix-commits, 2022/05/13
- 05/13: gnu: pipe-viewer: Update to 0.2.0, guix-commits, 2022/05/13
- 03/13: gnu: artanis: Update to 0.5.1., guix-commits, 2022/05/13
- 10/13: gnu: curl: Use $SSL_CERT_DIR/$SSL_CERT_FILE., guix-commits, 2022/05/13
- 09/13: gnu: cmake-bootstrap: Use $SSL_CERT_DIR/$SSL_CERT_FILE., guix-commits, 2022/05/13
- 11/13: gnu: guix: Use $SSL_CERT_DIR.,
guix-commits <=