mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: emacs-ivy: Install documentation.
* gnu/packages/emacs.scm (emacs-ivy)[arguments]: Add phase "install-doc". [native-inputs]: Add texinfo.
This commit is contained in:
parent
a837423412
commit
5f66a0a78b
1 changed files with 13 additions and 0 deletions
|
@ -3249,8 +3249,21 @@ (define-public emacs-ivy
|
||||||
(base32
|
(base32
|
||||||
"14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
|
"14vnigqb5c3yi4q9ysw1fiwdqyqwyklqpb9wnjf81chm7s2mshnr"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'install 'install-doc
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
(info (string-append out "/share/info")))
|
||||||
|
(with-directory-excursion "doc"
|
||||||
|
(unless (zero? (system* "makeinfo" "ivy.texi"))
|
||||||
|
(error "makeinfo failed"))
|
||||||
|
(install-file "ivy.info" info))))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("emacs-hydra" ,emacs-hydra)))
|
`(("emacs-hydra" ,emacs-hydra)))
|
||||||
|
(native-inputs
|
||||||
|
`(("texinfo" ,texinfo)))
|
||||||
(home-page "http://oremacs.com/swiper/")
|
(home-page "http://oremacs.com/swiper/")
|
||||||
(synopsis "Incremental vertical completion for Emacs")
|
(synopsis "Incremental vertical completion for Emacs")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue