From 2aed41a0cbd6b439358d671ca7fd1e323ace9587 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 9 Sep 2025 08:40:59 +0100 Subject: [PATCH] gnu: gotestsum: Update to 1.12.3. * gnu/packages/check.scm (gotestsum): Update to 1.12.3. Fix indentation. [arguments]: 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 --- gnu/packages/check.scm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 97bd273c67ad14b7c429b3ceb594277d7ec90401..6c8942ff323d4ad38cf179195736579c7e17a961 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -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