mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: fennel: Install manpage.
* gnu/packages/lua.scm (fennel)[arguments]: Add phase to install manpage.
This commit is contained in:
parent
60021f2afa
commit
18a512528d
1 changed files with 7 additions and 1 deletions
|
@ -1094,7 +1094,13 @@ shell command executions.")
|
|||
#t))
|
||||
(delete 'check)
|
||||
(add-after 'install 'check
|
||||
(assoc-ref %standard-phases 'check)))))
|
||||
(assoc-ref %standard-phases 'check))
|
||||
(add-after 'install 'install-manpage
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(install-file "fennel.1"
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/man/man1"))
|
||||
#t)))))
|
||||
(inputs `(("lua" ,lua)))
|
||||
(home-page "https://fennel-lang.org/")
|
||||
(synopsis "Lisp that compiles to Lua")
|
||||
|
|
Loading…
Reference in a new issue