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,18 +359,59 @@ 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
(origin (origin
(method url-fetch) (method url-fetch)
(uri (uri
"https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz") "https://gitlab.inria.fr/fpottier/menhir/-/archive/20230608/archive.tar.gz")
(sha256 (sha256
(base32 "13mb862c20m1q7vjsa5lgqj3w6b0xhj8ckjyk524wrc4i0s1jzix")))) (base32 "13mb862c20m1q7vjsa5lgqj3w6b0xhj8ckjyk524wrc4i0s1jzix"))))
(build-system dune-build-system) (build-system dune-build-system)
(home-page "http://gitlab.inria.fr/fpottier/menhir") (home-page "http://gitlab.inria.fr/fpottier/menhir")
(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)))