guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit e997e6adaf9fd23180bbbe4eb6d34185c5f8d131
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 23 19:52:56 2026 +0100

    gnu: Add go-github-com-jstemmer-go-junit-report.
    
    * gnu/packages/golang-check.scm (go-github-com-jstemmer-go-junit-report): 
New variable.
---
 gnu/packages/golang-check.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index a9c8cdcec5..cb99a31b5d 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -2290,6 +2290,31 @@ library's testing/fstest package.")
      "This package implements a functionality to ingest JUnit XML reports.")
     (license license:expat)))
 
+(define-public go-github-com-jstemmer-go-junit-report
+  (package
+    (name "go-github-com-jstemmer-go-junit-report")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jstemmer/go-junit-report";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1x5qaicf7840l0jws26072abl6hqfzjn2pn2im0l9b4q97s7si7w"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/jstemmer/go-junit-report"))
+    (home-page "https://github.com/jstemmer/go-junit-report";)
+    (synopsis "Convert Go test output to JUnit XML")
+    (description
+     "@code{go-junit-report} is a tool that converts @code{go test} output to
+an XML report, suitable for applications that expect JUnit-style XML
+reports (e.g.  @url{http://jenkins-ci.org, Jenkins}).")
+    (license license:expat)))
+
 (define-public go-github-com-jtolds-gls
   (package
     (name "go-github-com-jtolds-gls")

Reply via email to