[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#47768] [PATCH v2 14/43] gnu: Add ocaml-uunf.
From: |
pukkamustard |
Subject: |
[bug#47768] [PATCH v2 14/43] gnu: Add ocaml-uunf. |
Date: |
Mon, 10 May 2021 05:15:59 +0000 |
* gnu/packages/ocaml.scm (ocaml-uunf): New variable.
---
gnu/packages/ocaml.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 605567b996..a320f94097 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -2708,6 +2708,38 @@ Functions are also provided to fold over the characters
of UTF encoded OCaml
string values and to directly encode characters in OCaml Buffer.t values.")
(license license:isc)))
+(define-public ocaml-uunf
+ (package
+ (name "ocaml-uunf")
+ (version "13.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri "https://erratique.ch/software/uunf/releases/uunf-13.0.0.tbz")
+ (sha256
+ (base32
+ "1qci04nkp24kdls1z4s8kz5dzgky4nwd5r8345nwdrgwmxhw7ksm"))))
+ (build-system ocaml-build-system)
+ (arguments
+ `(#:tests? #f
+ #:build-flags (list "build")
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))))
+ (native-inputs
+ `(("ocamlbuild" ,ocamlbuild)
+ ("opam" ,opam)
+ ("topkg" ,ocaml-topkg)))
+ (propagated-inputs `(("ocaml-uutf" ,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-jsonm
(package
(name "ocaml-jsonm")
--
2.31.1
- [bug#47768] [PATCH v2 00/43] Assorted OCaml patches (V2), pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 02/43] gnu: ocaml-ctypes: Update to 0.18.0., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 01/43] gnu: ocaml-integers: Update to 0.4.0., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 04/43] gnu: ocaml-lwt: Make libev a propagated input., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 06/43] gnu: ocaml4.07-gen: Update to 0.5.3., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 14/43] gnu: Add ocaml-uunf.,
pukkamustard <=
- [bug#47768] [PATCH v2 07/43] gnu: Add ocaml-gen., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 09/43] gnu: Add ocaml-compiler-libs., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 19/43] gnu: Add ocaml-ppx-compare., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 15/43] gnu: Add ocaml-ppx-sexp-conv., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 17/43] gnu: Add ocaml-ppx-let., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 33/43] gnu: Add ocaml-jane-street-headers., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 23/43] gnu: Add ocaml-ppx-custom-printf., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 03/43] gnu: ocaml-ctypes: Make ocaml-integers a propagated input., pukkamustard, 2021/05/10
- [bug#47768] [PATCH v2 08/43] gnu: Add ocaml-stdio., pukkamustard, 2021/05/10