Put in earplugs

This commit is contained in:
nik gaffney 2024-01-14 14:29:21 +01:00
parent 41563470ad
commit a98eaa7f6b
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -441,7 +441,7 @@ string format.")
;; via guix import opam junit_ounit
(define-public ocaml-junit-ounit
(package
(package
(name "ocaml-junit-ounit")
(version "2.0.2")
(source
@ -460,3 +460,30 @@ string format.")
(synopsis "JUnit XML reports generation for OUnit tests")
(description "JUnit XML reports generation for OUnit tests")
(license #f)))
;; via guix import opam junit_camomile
;; note: camomile 1.0.2 is currently available in guix
(define-public ocaml-camomile
(package
(name "ocaml-camomile")
(version "2.0.0")
(source
(origin
(method url-fetch)
(uri
"https://github.com/savonet/Camomile/archive/refs/tags/v2.0.0.tar.gz")
(sha256
(base32 "0gfhpwh039jgf9bdjwz3dxbjs0h90qd100nrbp5llnc1pg823d3b"))))
(build-system dune-build-system)
(propagated-inputs (list ocaml-dune-site ocaml-camlp-streams ocaml-odoc))
(native-inputs (list ocaml-stdlib-random))
(home-page "https://github.com/savonet/Camomile")
(synopsis "A Unicode library")
(description
"Camomile is a Unicode library for OCaml. Camomile provides Unicode character
type, UTF-8, UTF-16, UTF-32 strings, conversion to/from about 200 encodings,
collation and locale-sensitive case mappings, and more. The library is
currently designed for Unicode Standard 3.2.")
(license #f)))