~ruther/guix-local

e7b8e836709528bde663bff454d97cc3e1ec3994 — Ludovic Courtès 3 years ago 38e8373
search-paths: Remove redundant uses of 'define-public'.

* guix/search-paths.scm ($GUIX_EXTENSIONS_PATH, $SSL_CERT_DIR,
$SSL_CERT_FILE): Use 'define', not 'define-public'.
1 files changed, 3 insertions(+), 3 deletions(-)

M guix/search-paths.scm
M guix/search-paths.scm => guix/search-paths.scm +3 -3
@@ 74,7 74,7 @@
   (variable "PATH")
   (files '("bin" "sbin"))))

(define-public $GUIX_EXTENSIONS_PATH
(define $GUIX_EXTENSIONS_PATH
  ;; 'GUIX_EXTENSIONS_PATH' is used by Guix to locate extension commands.
  ;; Like 'PATH', it's not attached to any package, so that users don't have
  ;; to install the 'guix' package (which is not supposed to be installed,


@@ 94,13 94,13 @@
;; Additionally, the 'native-search-paths' field is not thunked,
;; so doing (package-native-search-paths openssl)
;; could cause import cycle issues.
(define-public $SSL_CERT_DIR
(define $SSL_CERT_DIR
  (search-path-specification
   (variable "SSL_CERT_DIR")
   (separator #f)              ;single entry
   (files '("etc/ssl/certs"))))

(define-public $SSL_CERT_FILE
(define $SSL_CERT_FILE
  (search-path-specification
   (variable "SSL_CERT_FILE")
   (file-type 'regular)