summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-gettext/camomile.nix
blob: d36063300196b4165597e547c9d8aca353c653ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 = (builtins.removeAttrs ocaml_gettext.meta  [ "mainProgram" ]) // {
    description = "Internationalization library using camomile (i18n)";
  };

}