guix_mirror_bot pushed a commit to branch ocaml-team
in repository guix.

commit 3198a9ab8dc221a0f6e7e6fd7751f69a2de2eb9c
Author: Jason Conroy <[email protected]>
AuthorDate: Sun Feb 15 13:25:25 2026 -0500

    gnu: ocaml5: Add ocaml-uucd.
    
    * gnu/packages/ocaml5.scm (ocaml-uucd): New variable.
    
    Change-Id: I1cb49bb6e7909fe1bf84ae0b72ed86e82ff95a7d
    Signed-off-by: Julien Lepiller <[email protected]>
---
 gnu/packages/ocaml5.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index c782e5143b..0b3c75a864 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -904,6 +904,33 @@ IO mechanism or Unicode text data structure and it can 
process text
 without a complete in-memory representation.")
     (license license:isc)))
 
+(define-public ocaml-uucd
+  (package
+    (name "ocaml5-uucd")
+    (version "17.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://erratique.ch/software/uucd/releases/";
+                           "uucd-" version ".tbz"))
+       (sha256
+        (base32 "0b98phs4i4p6fyj9pmsbqb2yf62wz1js0pnibcwaqbky8c2w9y49"))))
+    (build-system ocaml-build-system)
+    (arguments
+     '(#:build-flags '("build" "--tests" "true")
+       #:phases (modify-phases %standard-phases
+                  (delete 'configure))))
+    (propagated-inputs (list ocaml-xmlm))
+    (native-inputs (list opam-installer ocamlbuild ocaml-topkg))
+    (home-page "https://erratique.ch/software/uucd";)
+    (synopsis "Unicode character database decoder for OCaml")
+    (description
+     "Uucd is an OCaml module to decode the data of the Unicode
+character database from its XML representation.  It provides high-level (but
+not necessarily efficient) access to the data so that efficient
+representations can be extracted.")
+    (license license:isc)))
+
 (define-public ocaml-ocplib-endian
   (package
     (name "ocaml5-ocplib-endian")

Reply via email to