gnu: go-github-com-smartystreets-goconvey: Improve package style.

* gnu/packages/golang-check.scm (go-github-com-smartystreets-goconvey)
[version]: Apply the same stile as produced by importer.
[source]<commit>: Adjust accordingly.
[arguments]: Use list style.
[description]: Start from a new line.

Change-Id: Ie89644cec96c775c5f19f9ecc3ffaa15fba432cb
This commit is contained in:
Sharlatan Hellseher 2024-12-15 15:45:40 +00:00
parent 9bef96bdc0
commit ad071544ae
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1247,28 +1247,29 @@ execution when a test fails.")
(define-public go-github-com-smartystreets-goconvey (define-public go-github-com-smartystreets-goconvey
(package (package
(name "go-github-com-smartystreets-goconvey") (name "go-github-com-smartystreets-goconvey")
(version "v1.8.1") (version "1.8.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/smartystreets/goconvey") (url "https://github.com/smartystreets/goconvey")
(commit version))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "0s9s7yd4jfwgirnz46kw1sfhgcgsdzfxlca6q16i6ixaqczfaap9")))) (base32 "0s9s7yd4jfwgirnz46kw1sfhgcgsdzfxlca6q16i6ixaqczfaap9"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
'(#:import-path "github.com/smartystreets/goconvey")) (list
#:import-path "github.com/smartystreets/goconvey"))
(propagated-inputs (propagated-inputs
(list go-github-com-jtolds-gls (list go-github-com-jtolds-gls
go-github-com-smarty-assertions go-github-com-smarty-assertions
go-golang-org-x-tools)) go-golang-org-x-tools))
(home-page "https://github.com/smartystreets/goconvey") (home-page "https://github.com/smartystreets/goconvey")
(synopsis "Go testing tool with both a web and terminal user interface") (synopsis "Go testing tool with both a web and terminal user interface")
(description "GoConvey is a testing tool for Go. It integrates with go (description
test, can show test coverage and has a web user interface that will refresh "GoConvey is a testing tool for Go. It integrates with go test, can show
automatically.") test coverage and has a web user interface that will refresh automatically.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-smarty-assertions (define-public go-github-com-smarty-assertions