mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: racket: Declare OpenSSL search paths.
Otherwise, OpenSSL used via Racket fails to find certificates, e.g. when attempting to run 'raco pkg install'. Fixes <https://racket.discourse.group/t/2206/8>. * gnu/packages/racket.scm (racket-minimal)[native-search-paths]: Add $SSL_CERT_DIR and $SSL_CERT_FILE. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
0a69961953
commit
bce0fe8293
1 changed files with 2 additions and 0 deletions
|
@ -29,6 +29,7 @@ (define-module (gnu packages racket)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix diagnostics)
|
||||
#:use-module (guix i18n)
|
||||
#:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE))
|
||||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26)
|
||||
#:use-module (srfi srfi-34)
|
||||
|
@ -553,6 +554,7 @@ (define-public racket-minimal
|
|||
"base" %racket-origin
|
||||
'(("base" "pkgs/base")
|
||||
("racket-lib" "pkgs/racket-lib")))))
|
||||
(native-search-paths (list $SSL_CERT_DIR $SSL_CERT_FILE))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; Here and for the `racket` package, we're using #:configure-flags
|
||||
|
|
Loading…
Reference in a new issue