2021-02-17 17:02:09 +00:00
|
|
|
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, uunf, uucd }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "uucp";
|
2021-10-01 09:20:50 +00:00
|
|
|
version = "14.0.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
webpage = "https://erratique.ch/software/${pname}";
|
2021-02-17 17:02:09 +00:00
|
|
|
minimumOCamlVersion = "4.03";
|
|
|
|
doCheck = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
in
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
if lib.versionOlder ocaml.version minimumOCamlVersion
|
2021-02-17 17:02:09 +00:00
|
|
|
then builtins.throw "${pname} needs at least OCaml ${minimumOCamlVersion}"
|
|
|
|
else
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
|
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${webpage}/releases/${pname}-${version}.tbz";
|
2021-10-01 09:20:50 +00:00
|
|
|
sha256 = "sha256:1yx9nih3d9prb9zizq8fzmmqylf24a6yifhf81h33znrj5xn1mpj";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
|
|
buildInputs = [ topkg uutf uunf uucd ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ uchar ];
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
${topkg.buildPhase} --with-cmdliner false --tests ${lib.boolToString doCheck}
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
inherit (topkg) installPhase;
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
inherit doCheck;
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
${topkg.run} test
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
checkInputs = [ uucd ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database";
|
|
|
|
homepage = webpage;
|
2021-10-01 09:20:50 +00:00
|
|
|
inherit (ocaml.meta) platforms;
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
|
|
|
};
|
|
|
|
}
|