mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05: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 @@ (define-public fennel
|
|||
#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