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
|
(native-inputs
|
||||||
;; Test dependencies.
|
;; Test dependencies.
|
||||||
(list python-pyflakes
|
(append
|
||||||
shellcheck))
|
(list python-pyflakes)
|
||||||
|
(if (supported-package? shellcheck)
|
||||||
|
(list shellcheck)
|
||||||
|
'())))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-gopkg-in-yaml-v3
|
(list go-gopkg-in-yaml-v3
|
||||||
go-golang-org-x-sys
|
go-golang-org-x-sys
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue