mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uucp, uutf, cmdliner
|
|
, cmdlinerSupport ? lib.versionAtLeast cmdliner.version "1.1"
|
|
}:
|
|
|
|
let
|
|
pname = "uuseg";
|
|
webpage = "https://erratique.ch/software/${pname}";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
|
version = "15.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "${webpage}/releases/${pname}-${version}.tbz";
|
|
sha256 = "sha256-q8x3bia1QaKpzrWFxUmLWIraKqby7TuPNGvbSjkY4eM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
|
|
buildInputs = [ topkg uutf ]
|
|
++ lib.optional cmdlinerSupport cmdliner;
|
|
propagatedBuildInputs = [ uucp ];
|
|
|
|
strictDeps = true;
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
${topkg.run} build \
|
|
--with-uutf true \
|
|
--with-cmdliner ${lib.boolToString cmdlinerSupport}
|
|
runHook postBuild
|
|
'';
|
|
|
|
inherit (topkg) installPhase;
|
|
|
|
meta = with lib; {
|
|
description = "An OCaml library for segmenting Unicode text";
|
|
homepage = webpage;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.vbgl ];
|
|
mainProgram = "usegtrip";
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|