gnu: actionlint: Improve package style.

* gnu/packages/check.scm (actionlint): Adjust indentation.
[arguments]: Use list style.
[native-inputs]: Merge with [inputs] as for Golang they are only
required during build time for the final command.

Change-Id: I754c1631be653304c8ebac8263745b77df6ad890
This commit is contained in:
Sharlatan Hellseher 2024-09-23 21:58:07 +01:00
parent d3a25d8608
commit 43e0baa5db
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1300,28 +1300,30 @@ (define-public actionlint
(package
(name "actionlint")
(version "1.7.1")
(source (origin
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rhysd/actionlint")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0h84gb2mfhsrv1vqb3s2ff9j43zhg0ga49af6h2wdssbrs7w3vcy"))))
(base32 "0h84gb2mfhsrv1vqb3s2ff9j43zhg0ga49af6h2wdssbrs7w3vcy"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/rhysd/actionlint/cmd/actionlint"
#:unpack-path "github.com/rhysd/actionlint"
#:install-source? #f))
(inputs (list go-github-com-fatih-color
(list
#:install-source? #f
#:import-path "github.com/rhysd/actionlint/cmd/actionlint"
#:unpack-path "github.com/rhysd/actionlint"))
(native-inputs
(list go-github-com-fatih-color
go-github-com-mattn-go-colorable
go-github-com-mattn-go-runewidth
go-github-com-robfig-cron
go-golang-org-x-sync
go-golang-org-x-sync
go-github-com-google-go-cmp
go-gopkg-in-yaml-v3))
(native-inputs (list go-github-com-google-go-cmp))
(home-page "https://rhysd.github.io/actionlint/")
(synopsis "Static checker for GitHub Actions workflow files")
(description