[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
21/34: gnu: Add ocaml-junit.
From: |
guix-commits |
Subject: |
21/34: gnu: Add ocaml-junit. |
Date: |
Thu, 8 Feb 2024 17:25:45 -0500 (EST) |
roptat pushed a commit to branch master
in repository guix.
commit 10d8b7523cb9c65d2bf68853653b89fc3bc49f1a
Author: Arnaud DABY-SEESARAM <ds-ac@nanein.fr>
AuthorDate: Wed Jan 10 08:43:22 2024 +0100
gnu: Add ocaml-junit.
* gnu/packages/ocaml.scm (ocaml-junit): New variable.
Change-Id: I69fd4302b0a178765a79a72801eed694b3bd3ebd
Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
gnu/packages/ocaml.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 700e1edfb0..97bf7485b6 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -1618,6 +1618,36 @@ to JUnit and other XUnit testing frameworks.")
other XUnit testing frameworks.")
(license license:expat)))
+(define-public ocaml-junit
+ (package
+ (name "ocaml-junit")
+ (version "2.0.2")
+ (home-page "https://github.com/Khady/ocaml-junit")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1cam7zzarrh9p1l5m3ba3h5rkh9mhark8j37rjgw35a66qd0gds1"))))
+ (build-system dune-build-system)
+ (arguments
+ `(#:package "junit"
+ #:phases (modify-phases %standard-phases
+ (add-before 'build 'dune-subst
+ (lambda _
+ (invoke "dune" "subst") #t)))))
+ (properties `((upstream-name . "junit")))
+ (propagated-inputs (list ocaml-ounit ocaml-ptime ocaml-tyxml ocaml-odoc))
+ (synopsis "JUnit XML reports generation library")
+ (description "Ocaml-junit is a package for the creation of JUnit XML
+reports. It provides a typed API to produce valid reports. They are supposed
+to be accepted by Jenkins.")
+ ;; with OCaml linking exception
+ (license license:gpl3+)))
+
(define-public camlzip
(package
(name "camlzip")
- 25/34: gnu: Add ocaml-ppx-import., (continued)
- 25/34: gnu: Add ocaml-ppx-import., guix-commits, 2024/02/08
- 06/34: gnu: Update coq-autosubst to 1.8., guix-commits, 2024/02/08
- 02/34: gnu: Update coq-flocq to 4.1.1., guix-commits, 2024/02/08
- 07/34: gnu: Update coq-stdpp to 1.8.0., guix-commits, 2024/02/08
- 10/34: gnu: dune-bootstrap: Update to 3.11.0., guix-commits, 2024/02/08
- 11/34: gnu: opam: Split build into smaller sub-packages., guix-commits, 2024/02/08
- 12/34: gnu: ocaml-alcotest: Update to 1.7.0., guix-commits, 2024/02/08
- 15/34: gnu: Add ocaml-ppx-stable-witness., guix-commits, 2024/02/08
- 17/34: gnu: ocaml-ppx-bin-prot: Update to 0.16.0., guix-commits, 2024/02/08
- 18/34: gnu: ocaml-jst-config: Update to 0.16.0., guix-commits, 2024/02/08
- 21/34: gnu: Add ocaml-junit.,
guix-commits <=
- 26/34: gnu: Add ocaml-pp., guix-commits, 2024/02/08
- 29/34: gnu: Add dune-stdune., guix-commits, 2024/02/08
- 28/34: gnu: Add dune-dyn., guix-commits, 2024/02/08
- 24/34: gnu: Add ocaml-ppx-deriving-yaml., guix-commits, 2024/02/08
- 31/34: gnu: Add dune-site., guix-commits, 2024/02/08
- 30/34: gnu: Add dune-private-libs., guix-commits, 2024/02/08