1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, xmlm, topkg }:
5 webpage = "https://erratique.ch/software/${pname}";
7 stdenv.mkDerivation rec {
8 name = "ocaml-${pname}-${version}";
12 url = "${webpage}/releases/${pname}-${version}.tbz";
13 hash = "sha256-HIANZ5SDJcytlpw/W9Ae2eFTutrutJj2PgJCfByobfI=";
16 nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
17 buildInputs = [ topkg ];
21 inherit (topkg) buildPhase installPhase;
23 propagatedBuildInputs = [ xmlm ];
26 description = "An OCaml module to decode the data of the Unicode character database from its XML representation";
28 inherit (ocaml.meta) platforms;
29 maintainers = [ maintainers.vbgl ];
30 license = licenses.bsd3;