gnu: guile-next: Set correct native search paths.

* gnu/packages/guile.scm (guile-next): Use the "2.2" directory for the
  load paths.
This commit is contained in:
David Thompson 2016-02-13 00:08:22 -05:00
parent f2d8faff04
commit dd90ed892a

View file

@ -211,7 +211,15 @@ (define-public guile-next
;; times (almost 3 hours on a 4-core Intel i5).
(snippet '(for-each delete-file
(find-files "prebuilt" "\\.go$")))))
(synopsis "Snapshot of what will become version 2.2 of GNU Guile")))
(synopsis "Snapshot of what will become version 2.2 of GNU Guile")
(native-search-paths
(list (search-path-specification
(variable "GUILE_LOAD_PATH")
(files '("share/guile/site/2.2")))
(search-path-specification
(variable "GUILE_LOAD_COMPILED_PATH")
(files '("lib/guile/2.2/ccache"
"share/guile/site/2.2")))))))
(define-public guile-for-guile-emacs
(package (inherit guile-next)