gnu: guile-for-guile-emacs: Use guile-2.0 search paths.
* gnu/packages/guile.scm (guile-for-guile-emacs)[native-search-paths]: Use the same search paths as guile-2.0.
This commit is contained in:
parent
823e2ed4b3
commit
daeb61f7a9
|
@ -3,6 +3,7 @@
|
||||||
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
|
;;; Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
|
||||||
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
|
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
|
||||||
|
;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -255,7 +256,16 @@ without requiring the source code to be rewritten.")
|
||||||
("flex" ,flex)
|
("flex" ,flex)
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("gettext" ,gnu-gettext)
|
("gettext" ,gnu-gettext)
|
||||||
,@(package-native-inputs guile-next)))))
|
,@(package-native-inputs guile-next)))
|
||||||
|
;; Same as in guile-2.0
|
||||||
|
(native-search-paths
|
||||||
|
(list (search-path-specification
|
||||||
|
(variable "GUILE_LOAD_PATH")
|
||||||
|
(files '("share/guile/site/2.0")))
|
||||||
|
(search-path-specification
|
||||||
|
(variable "GUILE_LOAD_COMPILED_PATH")
|
||||||
|
(files '("lib/guile/2.0/ccache"
|
||||||
|
"share/guile/site/2.0")))))))
|
||||||
|
|
||||||
|
|
||||||
;;;
|
;;;
|
||||||
|
|
Loading…
Reference in New Issue