gnu: emacs-guix: Adjust to changes in emacs-build-system.
* gnu/packages/emacs-xyz.scm (emacs-guix)[#:phases]: Add expand-load-path. [#:configure-flags]: Install to elpa-directory.master
parent
89718b95a0
commit
f974455708
|
@ -3087,6 +3087,23 @@ type, for example: packages, buffers, files, etc.")
|
||||||
(base32
|
(base32
|
||||||
"1pqw7zbgxzwpig4xr0izc3z8h80c72i6bl5yi12br0d7aq6dbkvj"))))
|
"1pqw7zbgxzwpig4xr0izc3z8h80c72i6bl5yi12br0d7aq6dbkvj"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:modules ((guix build gnu-build-system)
|
||||||
|
((guix build emacs-build-system) #:prefix emacs:)
|
||||||
|
(guix build utils))
|
||||||
|
#:imported-modules (,@%gnu-build-system-modules
|
||||||
|
(guix build emacs-build-system)
|
||||||
|
(guix build emacs-utils))
|
||||||
|
#:configure-flags
|
||||||
|
(list (string-append "--with-lispdir="
|
||||||
|
(emacs:elpa-directory (assoc-ref %outputs "out"))))
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'expand-load-path
|
||||||
|
(lambda _
|
||||||
|
((assoc-ref emacs:%standard-phases 'expand-load-path)
|
||||||
|
#:prepend-source? #f)
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
|
|
Reference in New Issue