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

31 lines
812 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, uchar, uucp, uutf, cmdliner }:
let
pname = "uuseg";
webpage = "https://erratique.ch/software/${pname}";
in
2016-12-04 10:55:37 +00:00
stdenv.mkDerivation rec {
2016-12-04 10:55:37 +00:00
name = "ocaml${ocaml.version}-${pname}-${version}";
2018-07-30 07:05:04 +00:00
version = "11.0.0";
src = fetchurl {
url = "${webpage}/releases/${pname}-${version}.tbz";
2018-07-30 07:05:04 +00:00
sha256 = "17mn8p9pn340kmvfgnl1m64zbpy60r6svkwsdn2lcg3yi2jlbrwp";
};
2017-12-14 07:36:29 +00:00
buildInputs = [ ocaml findlib ocamlbuild cmdliner topkg uutf ];
2016-12-04 10:55:37 +00:00
propagatedBuildInputs = [ uucp uchar ];
2016-12-04 10:55:37 +00:00
inherit (topkg) buildPhase installPhase;
meta = with lib; {
description = "An OCaml library for segmenting Unicode text";
2019-09-08 23:38:31 +00:00
homepage = webpage;
platforms = ocaml.meta.platforms or [];
license = licenses.bsd3;
maintainers = [ maintainers.vbgl ];
};
}