guix_mirror_bot pushed a commit to branch master
in repository guix.

commit c2cdc979173ec966dac3f00990a37b50c2fca1a0
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 17:09:36 2025 -0500

    gnu: Add go-github-com-shabbyrobe-gocovmerge.
    
    * gnu/packages/golang-web.scm (go-github-com-shabbyrobe-gocovmerge): New
    variable.
    
    Change-Id: Ieb9a4d952e64433a997d03ec147e5411d25fc34b
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-check.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index dad6e68ec4..b77ef6efdc 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -26,6 +26,7 @@
 ;;; Copyright © 2024 Troy Figiel <[email protected]>
 ;;; Copyright © 2024 Roman Scherer <[email protected]>
 ;;; Copyright © 2025 Maxim Cournoyer <[email protected]>
+;;; Copyright © 2025 Patrick Norton <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -2424,6 +2425,32 @@ GIT_TRACE mechanism.")
      "This package provides tools for detecting deadlocks at run-time in Go.")
     (license license:asl2.0)))
 
+(define-public go-github-com-shabbyrobe-gocovmerge
+  (package
+    (name "go-github-com-shabbyrobe-gocovmerge")
+    (version "0.0.0-20230507112040-c3350d9342df")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/shabbyrobe/gocovmerge";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1853x61fcc0gnqgizggqhh4w9d3i6dcdw72z3gzncr6fhb03y4mz"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/shabbyrobe/gocovmerge"))
+    (propagated-inputs
+     (list go-golang-org-x-tools))
+    (home-page "https://github.com/shabbyrobe/gocovmerge";)
+    (synopsis "Merge coverprofile results from multiple test coverage runs")
+    (description
+     "This package takes the results from multiple
+@code{go test -coverprofile} runs and merges them into one profile.")
+    (license license:bsd-2)))
+
 (define-public go-github-com-smarty-assertions
   (package
     (name "go-github-com-smarty-assertions")

Reply via email to