mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: emacs-graphviz-dot-mode: Fix build.
* gnu/packages/emacs-xyz.scm (emacs-graphviz-dot-mode)[argument]: Use G-expressions.
This commit is contained in:
parent
8e7b091c29
commit
b118988e40
1 changed files with 19 additions and 18 deletions
|
@ -3302,8 +3302,9 @@ (define-public emacs-graphviz-dot-mode
|
|||
(base32 "1v1p85wk73nfsvv66qf90flgf9dqhmv15z1r7q4zmc4ifklqn08m"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'install 'make-info
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(with-directory-excursion "texinfo"
|
||||
|
@ -3314,7 +3315,7 @@ (define-public emacs-graphviz-dot-mode
|
|||
"clean"
|
||||
"info"
|
||||
(string-append "TEXINFODIR="
|
||||
(assoc-ref inputs "texinfo")
|
||||
#$(this-package-native-input "texinfo")
|
||||
"/bin")))))
|
||||
(add-after 'install 'install-info
|
||||
(lambda _
|
||||
|
|
Loading…
Reference in a new issue