gnu: gotestsum: Update to 1.12.3.

* gnu/packages/check.scm (gotestsum): Update to 1.12.3. Fix indentation.
[arguments]<install-source?>: As for the final executable it's not required.
[home-page]: Place above [synopsis].
[description]: Start from a new line and fix fill-column.

Change-Id: I9a4f11c03895f240224d0293fcdfb3b8c2827603
This commit is contained in:
Sharlatan Hellseher 2025-09-09 08:40:59 +01:00
parent 0c42de50fa
commit 2aed41a0cb
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1212,19 +1212,20 @@ similar to unit tests.")
(define-public gotestsum
(package
(name "gotestsum")
(version "1.12.2")
(version "1.12.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gotestyourself/gotestsum")
(commit (string-append "v" version))))
(url "https://github.com/gotestyourself/gotestsum")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "02q251j5kf2874vnvmbfc0ncnwssq459s8mf9f50cymqkpqbx0lp"))))
(base32 "1pj2d2rjab1zdzrc88ksf2v09fk9is9hg4rn6grcyaq76b8l3jcg"))))
(build-system go-build-system)
(arguments
(list
#:install-source? #f
#:import-path "gotest.tools/gotestsum"
#:test-flags
#~(list "-skip"
@ -1252,11 +1253,11 @@ similar to unit tests.")
go-golang-org-x-term
go-golang-org-x-tools
go-gotest-tools-v3))
(synopsis "Go test runner with output optimized for humans")
(description "This package provides a @code{go test} runner with output
optimized for humans, JUnit XML for CI integration, and a summary of the
test results.")
(home-page "https://github.com/gotestyourself/gotestsum")
(synopsis "Go test runner with output optimized for humans")
(description
"This package provides a @code{go test} runner with output optimized for
humans, JUnit XML for CI integration, and a summary of the test results.")
(license license:asl2.0)))
(define-public greatest