mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -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))
|
#t))
|
||||||
(delete 'check)
|
(delete 'check)
|
||||||
(add-after 'install '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)))
|
(inputs `(("lua" ,lua)))
|
||||||
(home-page "https://fennel-lang.org/")
|
(home-page "https://fennel-lang.org/")
|
||||||
(synopsis "Lisp that compiles to Lua")
|
(synopsis "Lisp that compiles to Lua")
|
||||||
|
|
Loading…
Reference in a new issue