mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: emacs-graphviz-dot-mode: Improve package style.
* gnu/packages/emacs-xyz.scm (emacs-graphviz-dot-mode)[arguments]: Use G-expressions. Remove trailing #T.
This commit is contained in:
parent
4261f86bad
commit
f3fbba4dea
1 changed files with 3 additions and 5 deletions
|
@ -3317,11 +3317,9 @@ (define-public emacs-graphviz-dot-mode
|
|||
(assoc-ref inputs "texinfo")
|
||||
"/bin")))))
|
||||
(add-after 'install 'install-info
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(info (string-append out "/share/info")))
|
||||
(install-file "texinfo/graphviz-dot-mode.info.gz" info)
|
||||
#t))))))
|
||||
(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