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

commit dc3d3a1d26bd43996667d1c5b00f89cb720fa4fc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 13 22:13:15 2026 +0000

    gnu: Add go-github-com-joshdk-go-junit.
    
    * gnu/packages/golang-check.scm (go-github-com-joshdk-go-junit): New 
variable.
    
    Change-Id: I4456ddc8bb999eb2eab75e725f0f9fc1f95c97c1
---
 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 87651bde02..afc163a53c 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -1886,6 +1886,31 @@ testing and improve the efficiency of unit test 
writing.")
 testing of time-sensitive code.")
     (license license:expat)))
 
+(define-public go-github-com-joshdk-go-junit
+  (package
+    (name "go-github-com-joshdk-go-junit")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/joshdk/go-junit";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1grk90ymwpmlvid6q2rsayvbb51mwh9b6sczqn0yk5dpgykggn1v"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/joshdk/go-junit"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://github.com/joshdk/go-junit";)
+    (synopsis "Go library for ingesting JUnit XML reports")
+    (description
+     "This package implements a functionality to ingest JUnit XML reports.")
+    (license license:expat)))
+
 (define-public go-github-com-jtolds-gls
   (package
     (name "go-github-com-jtolds-gls")

Reply via email to