mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02: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:
@@ -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.")
|
||||
|
||||
Reference in New Issue
Block a user