mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -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,24 +3302,25 @@ (define-public emacs-graphviz-dot-mode
|
|||
(base32 "1v1p85wk73nfsvv66qf90flgf9dqhmv15z1r7q4zmc4ifklqn08m"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'install 'make-info
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(with-directory-excursion "texinfo"
|
||||
(substitute* "Makefile"
|
||||
(("\\/usr\\/bin\\/gzip")
|
||||
(search-input-file inputs "/bin/gzip")))
|
||||
(invoke "make"
|
||||
"clean"
|
||||
"info"
|
||||
(string-append "TEXINFODIR="
|
||||
(assoc-ref inputs "texinfo")
|
||||
"/bin")))))
|
||||
(add-after 'install 'install-info
|
||||
(lambda _
|
||||
(let ((info (string-append #$output "/share/info")))
|
||||
(install-file "texinfo/graphviz-dot-mode.info.gz" info)))))))
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'install 'make-info
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(with-directory-excursion "texinfo"
|
||||
(substitute* "Makefile"
|
||||
(("\\/usr\\/bin\\/gzip")
|
||||
(search-input-file inputs "/bin/gzip")))
|
||||
(invoke "make"
|
||||
"clean"
|
||||
"info"
|
||||
(string-append "TEXINFODIR="
|
||||
#$(this-package-native-input "texinfo")
|
||||
"/bin")))))
|
||||
(add-after 'install 'install-info
|
||||
(lambda _
|
||||
(let ((info (string-append #$output "/share/info")))
|
||||
(install-file "texinfo/graphviz-dot-mode.info.gz" info)))))))
|
||||
(native-inputs
|
||||
(list gzip texinfo))
|
||||
(propagated-inputs
|
||||
|
|
Loading…
Reference in a new issue