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