nixpkgs/pkgs/development/ocaml-modules/uucp/default.nix

52 lines
1.3 KiB
Nix
Raw Normal View History

2021-02-16 14:10:01 +00:00
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uutf, uunf, uucd }:
let
pname = "uucp";
version = "14.0.0";
webpage = "https://erratique.ch/software/${pname}";
minimumOCamlVersion = "4.03";
2021-02-16 14:10:01 +00:00
doCheck = true;
in
if !(lib.versionAtLeast ocaml.version minimumOCamlVersion)
then builtins.throw "${pname} needs at least OCaml ${minimumOCamlVersion}"
else
stdenv.mkDerivation {
2016-12-04 10:39:58 +00:00
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
sha256 = "sha256:1yx9nih3d9prb9zizq8fzmmqylf24a6yifhf81h33znrj5xn1mpj";
};
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 ];
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 17:45:11 +00:00
inherit (topkg) installPhase;
2021-02-16 14:10:01 +00:00
inherit doCheck;
checkPhase = ''
runHook preCheck
${topkg.run} test
runHook postCheck
'';
checkInputs = [ uucd ];
meta = with lib; {
description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database";
2019-09-08 23:38:31 +00:00
homepage = webpage;
inherit (ocaml.meta) platforms;
license = licenses.bsd3;
maintainers = [ maintainers.vbgl ];
};
}