diff --git a/packages/zzkt/soupault.scm b/packages/zzkt/soupault.scm index 432ae8c..3ad102a 100644 --- a/packages/zzkt/soupault.scm +++ b/packages/zzkt/soupault.scm @@ -359,18 +359,59 @@ documentation about the format, see : ;; via guix import opam menhirLib (define-public ocaml-menhirLib -(package - (name "ocaml-menhirLib") - (version "20230608") - (source - (origin + (package + (name "ocaml-menhirLib") + (version "20230608") + (source + (origin (method url-fetch) (uri "https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz") (sha256 (base32 "13mb862c20m1q7vjsa5lgqj3w6b0xhj8ckjyk524wrc4i0s1jzix")))) - (build-system dune-build-system) - (home-page "http://gitlab.inria.fr/fpottier/menhir") - (synopsis "Runtime support library for parsers generated by Menhir") - (description #f) - (license #f))) + (build-system dune-build-system) + (home-page "http://gitlab.inria.fr/fpottier/menhir") + (synopsis "Runtime support library for parsers generated by Menhir") + (description #f) + (license #f))) + +;; via guix import opam junit + +(define-public ocaml-junit + (package + (name "ocaml-junit") + (version "2.0.2") + (source + (origin + (method url-fetch) + (uri + "https://github.com/Khady/ocaml-junit/releases/download/2.0.2/junit-2.0.2.tbz") + (sha256 + (base32 "00bbx5j8vsy9fqbc04xa3lsalaxicirmbczr65bllfk1afv43agx")))) + (build-system dune-build-system) + (propagated-inputs (list ocaml-ptime ocaml-tyxml ocaml-odoc)) + (home-page "https://github.com/Khady/ocaml-junit") + (synopsis "JUnit XML reports generation library") + (description "JUnit XML reports generation library") + (license #f))) + +;; via guix import opam junit_alcotest + +(define-public ocaml-junit-alcotest + (package + (name "ocaml-junit-alcotest") + (version "2.0.2") + (source + (origin + (method url-fetch) + (uri + "https://github.com/Khady/ocaml-junit/releases/download/2.0.2/junit-2.0.2.tbz") + (sha256 + (base32 "00bbx5j8vsy9fqbc04xa3lsalaxicirmbczr65bllfk1afv43agx")))) + (build-system dune-build-system) + (propagated-inputs (list ocaml-odoc ocaml-alcotest ocaml-junit)) + (properties `((upstream-name . "junit_alcotest"))) + (home-page "https://github.com/Khady/ocaml-junit") + (synopsis "JUnit XML reports generation for alcotest tests") + (description "JUnit XML reports generation for alcotest tests") + (license #f)))