mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: guile-next: Add the correct native search paths.
* gnu/packages/guile.scm (guile-next): Add native search paths for version 3.0.
This commit is contained in:
parent
aff91b0d0b
commit
e14b3067e3
1 changed files with 9 additions and 1 deletions
|
@ -355,7 +355,15 @@ (define-public guile-next
|
|||
(lambda _
|
||||
;; Remove this test that's bound to fail.
|
||||
(delete-file "test-suite/tests/version.test")
|
||||
#t)))))))))
|
||||
#t))))))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "GUILE_LOAD_PATH")
|
||||
(files '("share/guile/site/3.0")))
|
||||
(search-path-specification
|
||||
(variable "GUILE_LOAD_COMPILED_PATH")
|
||||
(files '("lib/guile/3.0/site-ccache"
|
||||
"share/guile/site/3.0"))))))))
|
||||
|
||||
(define (make-guile-readline guile)
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue