jgart pushed a commit to branch haskell-team-shellcheck in repository guix.
commit a693faf3945ea86071973f41b5dc93ade22f30d1 Author: jgart <[email protected]> AuthorDate: Wed Aug 14 19:17:11 2024 -0500 gnu: shellcheck: Update to 0.10.0. * gnu/packages/haskell-apps.scm (shellcheck): Update to 0.10.0. [arguments]: Use modern style and make manpage script executable. Change-Id: Id9dd03df4f8f0033dd3fc9a23b0b4d65ea1a73c6 --- gnu/packages/haskell-apps.scm | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/gnu/packages/haskell-apps.scm b/gnu/packages/haskell-apps.scm index 43c12fd71c..e428e79047 100644 --- a/gnu/packages/haskell-apps.scm +++ b/gnu/packages/haskell-apps.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2021 Stefan Reichör <[email protected]> ;;; Copyright © 2021 Morgan Smith <[email protected]> ;;; Copyright © 2022 David Thompson <[email protected]> +;;; Copyright © 2024 jgart <[email protected]> ;;; ;;; This file is part of GNU Guix. ;;; @@ -921,30 +922,31 @@ too slow and you'll get wound up in the scroll and crushed.") (define-public shellcheck (package (name "shellcheck") - (version "0.9.0") + (version "0.10.0") (source (origin (method url-fetch) (uri (hackage-uri "ShellCheck" version)) (sha256 - (base32 "071k2gc8rzpg9lwq9g10c9xx0zm1wcgsf8v4n1csj9fm56vy7gmb")) + (base32 "08bdjcdl457xz2vh8y2w29bcwh1k7sfzyvszln3498vm5m1xn22d")) (file-name (string-append name "-" version ".tar.gz")))) (build-system haskell-build-system) (arguments - '(#:haddock? #f ; TODO: Fails to build. - #: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/")))) - (add-after 'register 'remove-libraries - (lambda* (#:key outputs #:allow-other-keys) - (delete-file-recursively (string-append (assoc-ref outputs "out") "/lib"))))))) + (list #:haddock? #f ; TODO: Fails to build. + #:phases + #~(modify-phases %standard-phases + (add-after 'build 'build-man-page + (lambda _ + (chmod "manpage" #o555) + (invoke "./manpage"))) + (add-after 'install 'install-man-page + (lambda* (#:key outputs #:allow-other-keys) + (install-file "shellcheck.1" + (string-append #$output + "/share/man/man1/")))) + (add-after 'register 'remove-libraries + (lambda* (#:key outputs #:allow-other-keys) + (delete-file-recursively (string-append #$output "/lib"))))))) (native-inputs (list pandoc)) (inputs
