Put in earplugs

This commit is contained in:
nik gaffney 2024-01-04 19:56:06 +01:00
parent d63fe7cdeb
commit e2ed32fdd4
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -359,7 +359,7 @@ documentation about the format, see :
;; via guix import opam menhirLib ;; via guix import opam menhirLib
(define-public ocaml-menhirLib (define-public ocaml-menhirLib
(package (package
(name "ocaml-menhirLib") (name "ocaml-menhirLib")
(version "20230608") (version "20230608")
(source (source
@ -374,3 +374,44 @@ documentation about the format, see :
(synopsis "Runtime support library for parsers generated by Menhir") (synopsis "Runtime support library for parsers generated by Menhir")
(description #f) (description #f)
(license #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)))