mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: shellcheck: Generate and install man page.
* gnu/packages/haskell-apps.scm (shellcheck) [arguments]<#:phases>: Add build-man-page and install-man-page phases. [native-inputs]: Add pandoc. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
70af5bf17f
commit
83da1cb65a
1 changed files with 14 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
;;; Copyright © 2020 Brian Leung <bkleung89@gmail.com>
|
||||
;;; Copyright © 2021 EuAndreh <eu@euandre.org>
|
||||
;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
|
||||
;;; Copyright © 2021 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -857,6 +858,19 @@ (define-public shellcheck
|
|||
(base32 "06m4wh891nah3y0br4wh3adpsb16zawkb2ijgf1vcz61fznj6ps1"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
(build-system haskell-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'build 'build-man-page
|
||||
(lambda _
|
||||
(invoke "./manpage")))
|
||||
(add-after 'install 'install-man-page
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(install-file "shellcheck.1"
|
||||
(string-append (assoc-ref outputs "out")
|
||||
"/share/man/man1/")))))))
|
||||
(native-inputs
|
||||
`(("pandoc" ,pandoc)))
|
||||
(inputs
|
||||
`(("ghc-aeson" ,ghc-aeson)
|
||||
("ghc-diff" ,ghc-diff)
|
||||
|
|
Loading…
Reference in a new issue