From 83da1cb65a3470a7240574320fff7d35f8a50300 Mon Sep 17 00:00:00 2001 From: Morgan Smith Date: Fri, 2 Jul 2021 14:10:02 -0400 Subject: 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 --- gnu/packages/haskell-apps.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index ebf7f5ef82..5260326311 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2020 Brian Leung ;;; Copyright © 2021 EuAndreh ;;; Copyright © 2021 Stefan Reichör +;;; Copyright © 2021 Morgan Smith ;;; ;;; This file is part of GNU Guix. ;;; @@ -857,6 +858,19 @@ too slow and you'll get wound up in the scroll and crushed.") (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) -- cgit v1.2.3