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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

77 lines
1.5 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";
2024-09-24 05:02:06 +00:00
version = "16.0.0";
webpage = "https://erratique.ch/software/${pname}";
minimalOCamlVersion = "4.03";
2021-02-16 14:10:01 +00:00
doCheck = true;
in
if lib.versionOlder ocaml.version minimalOCamlVersion then
builtins.throw "${pname} needs at least OCaml ${minimalOCamlVersion}"
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";
2024-09-24 05:02:06 +00:00
hash = "sha256-5//UGI4u3OROYdxtwz9K2vCTzYiN16mOyEFhUQWtgEQ=";
};
nativeBuildInputs = [
ocaml
findlib
ocamlbuild
topkg
];
buildInputs = [
topkg
uutf
uunf
uucd
];
2016-12-04 10:39:58 +00:00
propagatedBuildInputs = [ uchar ];
strictDeps = true;
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 ];
2021-02-16 14:10:01 +00:00
meta = with lib; {
description = "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 ];
};
}