summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uunf
diff options
context:
space:
mode:
authorVincent Laporte <vincent.laporte@gmail.com>2014-07-09 09:42:26 +0200
committerVincent Laporte <vincent.laporte@gmail.com>2014-07-16 10:05:53 +0200
commit64c6d0117ddf088e4915f5eefc230ae4e6405eed (patch)
tree0483e78d53392d6880a258a544f57460b3cf731a /pkgs/development/ocaml-modules/uunf
parent952f3f6e8b80c944699104d1be954ef2d516f162 (diff)
downloadnixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.tar
nixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.tar.gz
nixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.tar.bz2
nixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.tar.lz
nixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.tar.xz
nixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.tar.zst
nixlib-64c6d0117ddf088e4915f5eefc230ae4e6405eed.zip
Adds OCaml libraries: uucd, uunf, uutf and xmlm
Four OCaml libraries contributed by Daniel Bünzli for unicode and xml
processing.

 -  xmlm: Streaming XML codec for OCaml
 -  uutf: Non-blocking streaming Unicode codec for OCaml
 -  uunf: Unicode text normalization for OCaml
 -  uucd: Unicode character database decoder for Ocaml

Homepage: http://erratique.ch/software
Diffstat (limited to 'pkgs/development/ocaml-modules/uunf')
-rw-r--r--pkgs/development/ocaml-modules/uunf/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/uunf/default.nix b/pkgs/development/ocaml-modules/uunf/default.nix
new file mode 100644
index 000000000000..c807bbd44637
--- /dev/null
+++ b/pkgs/development/ocaml-modules/uunf/default.nix
@@ -0,0 +1,37 @@
+{stdenv, fetchurl, ocaml, findlib, opam}:
+let
+  pname = "uunf";
+  version = "0.9.3";
+  webpage = "http://erratique.ch/software/${pname}";
+  ocaml_version = (builtins.parseDrvName ocaml.name).version;
+in
+stdenv.mkDerivation rec {
+
+  name = "ocaml-${pname}-${version}";
+
+  src = fetchurl {
+    url = "${webpage}/releases/${pname}-${version}.tbz";
+    sha256 = "16cgjy1m0m61srv1pmlc3gr0y40kd4724clvpagdnz68raz4zmn0";
+  };
+
+  buildInputs = [ ocaml findlib opam ];
+
+  createFindlibDestdir = true;
+
+  unpackCmd = "tar xjf $src";
+
+  buildPhase = "./pkg/build true false";
+
+  installPhase = ''
+    opam-installer --script --prefix=$out ${pname}.install > install.sh
+    sh install.sh
+    ln -s $out/lib/${pname} $out/lib/ocaml/${ocaml_version}/site-lib/
+  '';
+
+  meta = {
+    description = "An OCaml module for normalizing Unicode text";
+    homepage = "${webpage}";
+    platforms = ocaml.meta.platforms;
+    license = stdenv.lib.licenses.bsd3;
+  };
+}