guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 2aed41a0cbd6b439358d671ca7fd1e323ace9587
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 9 08:40:59 2025 +0100

    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
---
 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 97bd273c67..6c8942ff32 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

Reply via email to