guix_mirror_bot pushed a commit to branch ocaml-team
in repository guix.
commit f5dae3f35a54c3c7d4e1e2f7c975482966853f4b
Author: Jason Conroy <[email protected]>
AuthorDate: Sun Feb 15 13:22:30 2026 -0500
gnu: ocaml5: Add ocaml-uunf.
* gnu/packages/ocaml5.scm (ocaml-uunf): New variable.
Change-Id: Ied12026d04efe7b61bf31f427a9c6609c6a4cdd9
Signed-off-by: Julien Lepiller <[email protected]>
---
gnu/packages/ocaml5.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index 152eb57af9..c782e5143b 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -876,6 +876,34 @@ events and signals. React doesn't define any primitive
event or signal, it
lets the client choose the concrete timeline.")
(license license:bsd-3)))
+(define-public ocaml-uunf
+ (package
+ (name "ocaml5-uunf")
+ (version "17.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://erratique.ch/software/uunf/releases/uunf-"
+ version ".tbz"))
+ (sha256
+ (base32 "0q6l33146kymq7nqvx8ck6zpw4y2w8rcff1d1fi6dcv8qi9ijxp5"))))
+ (build-system ocaml-build-system)
+ (arguments
+ `(#:tests? #f
+ #:build-flags (list "build")
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs (list ocamlbuild opam-installer ocaml-topkg))
+ (propagated-inputs (list ocaml-uutf))
+ (home-page "https://erratique.ch/software/uunf")
+ (synopsis "Unicode text normalization for OCaml")
+ (description
+ "Uunf is an OCaml library for normalizing Unicode text. It supports all
+Unicode normalization forms. The library is independent from any
+IO mechanism or Unicode text data structure and it can process text
+without a complete in-memory representation.")
+ (license license:isc)))
+
(define-public ocaml-ocplib-endian
(package
(name "ocaml5-ocplib-endian")