2021-02-16 14:10:01 +00:00
|
|
|
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, uunf, uucd }:
|
2014-11-27 06:53:43 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
pname = "uucp";
|
2021-02-07 23:43:11 +00:00
|
|
|
version = "13.0.0";
|
2019-04-22 09:14:28 +01:00
|
|
|
webpage = "https://erratique.ch/software/${pname}";
|
2021-02-07 23:43:11 +00:00
|
|
|
minimumOCamlVersion = "4.03";
|
2021-02-16 14:10:01 +00:00
|
|
|
doCheck = true;
|
2014-11-27 06:53:43 +00:00
|
|
|
in
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
if !(lib.versionAtLeast ocaml.version minimumOCamlVersion)
|
|
|
|
then builtins.throw "${pname} needs at least OCaml ${minimumOCamlVersion}"
|
|
|
|
else
|
2014-11-27 06:53:43 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2016-12-04 10:39:58 +00:00
|
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
2014-11-27 06:53:43 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${webpage}/releases/${pname}-${version}.tbz";
|
2021-02-07 23:43:11 +00:00
|
|
|
sha256 = "sha256-OPpHbCOC/vMFdyHwyhCSisUv2PyO8xbeY2oq1a9HbqY=";
|
2014-11-27 06:53:43 +00:00
|
|
|
};
|
|
|
|
|
2017-12-14 07:36:29 +00:00
|
|
|
buildInputs = [ ocaml findlib ocamlbuild topkg uutf uunf ];
|
2016-12-04 10:39:58 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ uchar ];
|
2014-11-27 06:53:43 +00:00
|
|
|
|
2021-02-16 14:10:01 +00:00
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
${topkg.buildPhase} --with-cmdliner false --tests ${lib.boolToString doCheck}
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
2017-06-29 18:45:11 +01:00
|
|
|
|
|
|
|
inherit (topkg) installPhase;
|
2014-11-27 06:53:43 +00:00
|
|
|
|
2021-02-16 14:10:01 +00:00
|
|
|
inherit doCheck;
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
${topkg.run} test
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
checkInputs = [ uucd ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-11-27 06:53:43 +00:00
|
|
|
description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database";
|
2019-09-09 00:38:31 +01:00
|
|
|
homepage = webpage;
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-11-27 06:53:43 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.vbgl ];
|
|
|
|
};
|
|
|
|
}
|