gnu: translate-shell: Fix .el install directory.
* gnu/packages/dictionaries.scm (translate-shell)[arguments]: Change the install directory during the custom 'emacs-install phase to match with other emacs .el packages.
This commit is contained in:
parent
d60772dcdd
commit
714b49f68d
|
@ -257,7 +257,8 @@ and a Python library.")
|
||||||
(add-after 'install 'emacs-install
|
(add-after 'install 'emacs-install
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(dest (string-append out "/share/emacs/site-lisp"))
|
(dest (string-append out "/share/emacs/site-lisp/guix.d/"
|
||||||
|
,name "-" ,version))
|
||||||
(emacs (string-append (assoc-ref inputs "emacs") "/bin/emacs")))
|
(emacs (string-append (assoc-ref inputs "emacs") "/bin/emacs")))
|
||||||
(install-file "google-translate-mode.el" dest)
|
(install-file "google-translate-mode.el" dest)
|
||||||
(emacs-generate-autoloads ,name dest)))))
|
(emacs-generate-autoloads ,name dest)))))
|
||||||
|
|
Loading…
Reference in New Issue