mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-rhysd-actionlint: Only use shellcheck when supported.
* gnu/packages/golang-vcs.scm (go-github-com-rhysd-actionlint) [native-inputs]: Only include shellcheck on systems where it is supported. Change-Id: Ie14c3b0457b280661cd01e5f222fb5646e6f7a03
This commit is contained in:
parent
b05f0c10c5
commit
3460c6249a
1 changed files with 5 additions and 2 deletions
|
@ -322,8 +322,11 @@ Actions} locally.")
|
|||
"|"))))
|
||||
(native-inputs
|
||||
;; Test dependencies.
|
||||
(list python-pyflakes
|
||||
shellcheck))
|
||||
(append
|
||||
(list python-pyflakes)
|
||||
(if (supported-package? shellcheck)
|
||||
(list shellcheck)
|
||||
'())))
|
||||
(propagated-inputs
|
||||
(list go-gopkg-in-yaml-v3
|
||||
go-golang-org-x-sys
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue