ocamlPackages.gettext-camomile: init at 0.4.2

This commit is contained in:
Vincent Laporte 2021-04-01 22:24:55 +02:00 committed by sterni
parent ef0e64ec60
commit 9ac5c7df17
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ buildDunePackage, ocaml_gettext, camomile, ounit, fileutils }:
buildDunePackage {
pname = "gettext-camomile";
inherit (ocaml_gettext) src version useDune2;
propagatedBuildInputs = [ camomile ocaml_gettext ];
doCheck = true;
checkInputs = [ ounit fileutils ];
meta = ocaml_gettext.meta // {
description = "Internationalization library using camomile (i18n)";
};
}

View file

@ -796,6 +796,8 @@ let
ocaml_gettext = callPackage ../development/ocaml-modules/ocaml-gettext { };
gettext-camomile = callPackage ../development/ocaml-modules/ocaml-gettext/camomile.nix { };
gettext-stub = callPackage ../development/ocaml-modules/ocaml-gettext/stub.nix { };
ocamlgraph = callPackage ../development/ocaml-modules/ocamlgraph { };