diff options
author | Evan Straw <evan.straw99@gmail.com> | 2020-04-13 17:32:34 -0700 |
---|---|---|
committer | Brett Gilio <brettg@gnu.org> | 2020-07-24 21:01:41 -0500 |
commit | 30aa5dd7e7180d163d409b080bf89e8a15a5ba4d (patch) | |
tree | 5c5aec2c97046def96e3b2399faf7c2e979467a6 | |
parent | 982a6e79a2d674ea905e2c63c2378b9df7d64af6 (diff) | |
download | guix-30aa5dd7e7180d163d409b080bf89e8a15a5ba4d.tar.gz guix-30aa5dd7e7180d163d409b080bf89e8a15a5ba4d.zip |
gnu: emacs-use-package: Install texinfo manual.
* gnu/packages/emacs-xyz.scm (emacs-use-package).
[native-inputs]: Add texinfo.
[arguments]: Add phase for installation of the texinfo manual.
Signed-off-by: Brett Gilio <brettg@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9bdc8ee68d..836a3950f8 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -10464,13 +10464,28 @@ abbreviation of the mode line displays (lighters) of minor modes.") (base32 "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y")))) (build-system emacs-build-system) + (native-inputs + `(("texinfo" ,texinfo))) (propagated-inputs `(("emacs-diminish" ,emacs-diminish))) (arguments `(#:tests? #t #:test-command '("emacs" "--batch" "-l" "use-package-tests.el" - "-f" "ert-run-tests-batch-and-exit"))) + "-f" "ert-run-tests-batch-and-exit") + #:phases + (modify-phases %standard-phases + (add-before 'install 'install-manual + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (info-dir (string-append out "/share/info"))) + (mkdir-p info-dir) + (install-file "use-package.info" info-dir) + #t))) + (add-before 'install-manual 'build-manual + (lambda _ + (invoke "makeinfo" "use-package.texi") + #t))))) (home-page "https://github.com/jwiegley/use-package") (synopsis "Declaration for simplifying your .emacs") (description "The use-package macro allows you to isolate package |