mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-30 08:02:38 -05:00
gnu: just: Install manpage.
* gnu/packages/rust-apps.scm (just)[arguments]: Add phase to install manpage.
This commit is contained in:
parent
970fb81c62
commit
5b18971348
1 changed files with 6 additions and 1 deletions
|
@ -801,7 +801,12 @@ (define-public just
|
|||
(("/usr/bin/env")
|
||||
(search-input-file inputs "/bin/env"))
|
||||
(("/bin/echo")
|
||||
(search-input-file inputs "/bin/echo"))))))))
|
||||
(search-input-file inputs "/bin/echo")))))
|
||||
(add-after 'install 'install-manpage
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(install-file "man/just.1"
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/man/man1")))))))
|
||||
(home-page "https://github.com/casey/just")
|
||||
(synopsis "Just a command runner")
|
||||
(description "This package provides @code{just}, a command runner.
|
||||
|
|
Loading…
Reference in a new issue