me
/
guix
Archived
1
0
Fork 0

gnu: emacs-with-editor: Add info page.

* gnu/packages/emacs-xyz.scm (emacs-with-editor): Add info page.
[arguments]: Add phase make-info.
[native-inputs]: Add texinfo.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Michael Rohleder 2020-10-26 05:03:21 +01:00 committed by Nicolas Goaziou
parent 1e76f0b0df
commit eccb8a9932
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 9 additions and 0 deletions

View File

@ -401,6 +401,15 @@ configuration files, such as .gitattributes, .gitignore, and .git/config.")
(sha256
(base32 "01ysb9pnscpmingay6njdywkqgj4hn5l5d9igsg3x7p7061jwwix"))))
(build-system emacs-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'install 'make-info
(lambda _
(invoke "makeinfo" "--no-split"
"-o" "with-editor.info" "with-editor.texi"))))))
(native-inputs
`(("texinfo" ,texinfo)))
(propagated-inputs
`(("emacs-dash" ,emacs-dash)))
(home-page "https://github.com/magit/with-editor")