biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / uucp / default.nix
blob7ef10660fbb2c1ca30476134c4c1931a9c9b9c05
1 { lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, uunf, uucd }:
3 let
4   pname = "uucp";
5   version = "15.1.0";
6   webpage = "https://erratique.ch/software/${pname}";
7   minimalOCamlVersion = "4.03";
8   doCheck = true;
9 in
11 if lib.versionOlder ocaml.version minimalOCamlVersion
12 then builtins.throw "${pname} needs at least OCaml ${minimalOCamlVersion}"
13 else
15 stdenv.mkDerivation {
17   name = "ocaml${ocaml.version}-${pname}-${version}";
19   src = fetchurl {
20     url = "${webpage}/releases/${pname}-${version}.tbz";
21     hash = "sha256-qR5LiAZHt4oD3ak0x17GqbYXNaJmJxFk/WGoxT+yWYc=";
22   };
24   nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
25   buildInputs = [ topkg uutf uunf uucd ];
27   propagatedBuildInputs = [ uchar ];
29   strictDeps = true;
31   buildPhase = ''
32     runHook preBuild
33     ${topkg.buildPhase} --with-cmdliner false --tests ${lib.boolToString doCheck}
34     runHook postBuild
35   '';
37   inherit (topkg) installPhase;
39   inherit doCheck;
40   checkPhase = ''
41     runHook preCheck
42     ${topkg.run} test
43     runHook postCheck
44   '';
45   checkInputs = [ uucd ];
47   meta = with lib; {
48     description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database";
49     homepage = webpage;
50     inherit (ocaml.meta) platforms;
51     license = licenses.bsd3;
52     maintainers = [ maintainers.vbgl ];
53   };