This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new cb8a61530e gnu: emacs-graphviz-dot-mode: Patch GraphViz dot program
path.
cb8a61530e is described below
commit cb8a61530efb5545e1eb22c85a1f1d5fd6cf1316
Author: gemmaro <[email protected]>
AuthorDate: Tue Jun 17 22:49:32 2025 +0900
gnu: emacs-graphviz-dot-mode: Patch GraphViz dot program path.
* gnu/packages/emacs-xyz.scm (emacs-graphviz-dot-mode)[arguments]<#:phases>:
Add a phase to patch the dot program path variable.
[inputs]: Add GraphViz package.
Change-Id: I9de41919d23a3e8433975624db3070491fd7fb9c
Signed-off-by: Ian Eure <[email protected]>
---
gnu/packages/emacs-xyz.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9935c6cebc..55d199c8d4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -6587,6 +6587,11 @@ returns multiple locations, a list is displayed to
choose from.")
(list
#:phases
#~(modify-phases %standard-phases
+ (add-after 'unpack 'configure
+ (lambda* (#:key inputs #:allow-other-keys)
+ (emacs-substitute-variables "graphviz-dot-mode.el"
+ ("graphviz-dot-dot-program"
+ (search-input-file inputs "/bin/dot")))))
(add-before 'install 'make-info
(lambda* (#:key inputs #:allow-other-keys)
(with-directory-excursion "texinfo"
@@ -6605,6 +6610,7 @@ returns multiple locations, a list is displayed to choose
from.")
(install-file "texinfo/graphviz-dot-mode.info.gz" info)))))))
(native-inputs
(list gzip texinfo))
+ (inputs (list graphviz))
(propagated-inputs
(list emacs-company))
(home-page "http://ppareit.github.com/graphviz-dot-mode")