{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam }: let pname = "uunf"; webpage = "http://erratique.ch/software/${pname}"; in assert stdenv.lib.versionAtLeast ocaml.version "3.12"; stdenv.mkDerivation rec { name = "ocaml-${pname}-${version}"; version = "0.9.3"; src = fetchurl { url = "${webpage}/releases/${pname}-${version}.tbz"; sha256 = "16cgjy1m0m61srv1pmlc3gr0y40kd4724clvpagdnz68raz4zmn0"; }; buildInputs = [ ocaml findlib ocamlbuild 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 = with stdenv.lib; { description = "An OCaml module for normalizing Unicode text"; homepage = "${webpage}"; platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; }