python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / uunf / default.nix
blob252468061717e7c925d7c62050aeb0453e1aa226
1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, cmdliner
2 , cmdlinerSupport ? lib.versionAtLeast cmdliner.version "1.1"
3 }:
5 let
6   pname = "uunf";
7   webpage = "https://erratique.ch/software/${pname}";
8   version = "15.0.0";
9 in
11 if lib.versionOlder ocaml.version "4.03"
12 then throw "${pname} is not available for OCaml ${ocaml.version}"
13 else
15 stdenv.mkDerivation {
16   name = "ocaml${ocaml.version}-${pname}-${version}";
17   inherit version;
19   src = fetchurl {
20     url = "${webpage}/releases/${pname}-${version}.tbz";
21     sha256 = "sha256-B/prPAwfqS8ZPS3fyDDIzXWRbKofwOCyCfwvh9veuug=";
22   };
24   nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
25   buildInputs = [ topkg uutf ]
26   ++ lib.optional cmdlinerSupport cmdliner;
28   propagatedBuildInputs = [ uchar ];
30   strictDeps = true;
32   prePatch = lib.optionalString stdenv.isAarch64 "ulimit -s 16384";
34   buildPhase = ''
35     runHook preBuild
36     ${topkg.run} build \
37       --with-uutf true \
38       --with-cmdliner ${lib.boolToString cmdlinerSupport}
39     runHook postBuild
40   '';
42   inherit (topkg) installPhase;
44   meta = with lib; {
45     description = "An OCaml module for normalizing Unicode text";
46     homepage = webpage;
47     license = licenses.bsd3;
48     maintainers = [ maintainers.vbgl ];
49     mainProgram = "unftrip";
50     inherit (ocaml.meta) platforms;
51   };