diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-03-01 21:52:37 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-03-19 12:07:10 -0400 |
commit | d53e87cf11b5a5a1d794f6ef15fe7213c5b60546 (patch) | |
tree | 35856686ac1b205e218db863d92893d0b09e8341 /gnu/packages/haskell-xyz.scm | |
parent | 092cdae90b57ec6a6bd4047f37d8a5d8526bc191 (diff) | |
download | patches-d53e87cf11b5a5a1d794f6ef15fe7213c5b60546.tar patches-d53e87cf11b5a5a1d794f6ef15fe7213c5b60546.tar.gz |
gnu: ghc-hindent: Remove guix.d from the Elisp installation directory.
* gnu/packages/haskell-xyz.scm (ghc-hindent)[phases]{emacs-install}: Update
the installation prefix directory.
Diffstat (limited to 'gnu/packages/haskell-xyz.scm')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 418eb7cc46..01fecae850 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -5286,8 +5286,7 @@ descriptions.") (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (elisp-file "elisp/hindent.el") - (dest (string-append out "/share/emacs/site-lisp" - "/guix.d/hindent-" ,version)) + (dest (string-append out "/share/emacs/site-lisp")) (emacs (string-append (assoc-ref inputs "emacs") "/bin/emacs"))) (make-file-writable elisp-file) |