mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: emacs-stgit: Fix install location.
* gnu/packages/version-control.scm (emacs-stgit): Previously the files got installed under a "contrib" sub-directory that does not work with our Emacs configuration. This fixes that. Change-Id: Ic7c237476fd18f73dbfbde3368ceae4962ba9634 Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
parent
e27e63e6fe
commit
68366151a4
1 changed files with 9 additions and 1 deletions
|
|
@ -2066,7 +2066,15 @@ Features include:
|
|||
(name "emacs-stgit")
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list #:include '(list "contrib/stgit.el")))
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'install 'enter-lisp-directory
|
||||
(lambda _
|
||||
(chdir "contrib")))
|
||||
(add-before 'install-license-files 'leave-lisp-directory
|
||||
(lambda _
|
||||
(chdir ".."))))))
|
||||
(synopsis "Emacs major mode for StGit interaction")
|
||||
(description "This package a interactive tool to interact with git
|
||||
branches using StGit.")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue