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>
This commit is contained in:
parent
1e76f0b0df
commit
eccb8a9932
1 changed files with 9 additions and 0 deletions
|
@ -401,6 +401,15 @@ configuration files, such as .gitattributes, .gitignore, and .git/config.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "01ysb9pnscpmingay6njdywkqgj4hn5l5d9igsg3x7p7061jwwix"))))
|
(base32 "01ysb9pnscpmingay6njdywkqgj4hn5l5d9igsg3x7p7061jwwix"))))
|
||||||
(build-system emacs-build-system)
|
(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
|
(propagated-inputs
|
||||||
`(("emacs-dash" ,emacs-dash)))
|
`(("emacs-dash" ,emacs-dash)))
|
||||||
(home-page "https://github.com/magit/with-editor")
|
(home-page "https://github.com/magit/with-editor")
|
||||||
|
|
Reference in a new issue