guix_mirror_bot pushed a commit to branch ocaml-team
in repository guix.
commit 1094a3d9348f97d6e5fe340d43e4ed08a8a5c71d
Author: Jason Conroy <[email protected]>
AuthorDate: Sun Feb 15 14:47:37 2026 -0500
gnu: ocaml5: Add ocaml-uucp.
* gnu/packages/ocaml5.scm (ocaml-uucp): New variable.
Change-Id: I3608da7f843f16cea70e7fdfde18bc9dc5e90caa
Signed-off-by: Julien Lepiller <[email protected]>
---
gnu/packages/ocaml5.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/ocaml5.scm b/gnu/packages/ocaml5.scm
index 0b3c75a864..f35ac3bc7c 100644
--- a/gnu/packages/ocaml5.scm
+++ b/gnu/packages/ocaml5.scm
@@ -931,6 +931,35 @@ not necessarily efficient) access to the data so that
efficient
representations can be extracted.")
(license license:isc)))
+(define-public ocaml-uucp
+ (package
+ (name "ocaml5-uucp")
+ (version "17.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://erratique.ch/software/uucp/releases/"
+ "uucp-" version ".tbz"))
+ (sha256
+ (base32 "06xs0ig337vq5a4apyws2qjjj4gwgr1bg1c5lmwssq83gr72s94r"))))
+ (build-system ocaml-build-system)
+ (arguments
+ '(#:build-flags '("build" "--tests" "true")
+ #:phases (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs (list opam-installer
+ ocamlbuild
+ ocaml-topkg
+ ocaml-uucd
+ ocaml-uunf
+ ocaml-uutf))
+ (home-page "https://erratique.ch/software/uucp")
+ (synopsis "Unicode character properties for OCaml")
+ (description
+ "Uucp is an OCaml library providing efficient access to a
+selection of character properties of the Unicode character database.")
+ (license license:isc)))
+
(define-public ocaml-ocplib-endian
(package
(name "ocaml5-ocplib-endian")