summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-gettext/camomile.nix
blob: 4466234fdbc24121d82ab92d313858f79e99cbae (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;

  propagatedBuildInputs = [ camomile ocaml_gettext ];

  doCheck = true;
  checkInputs = [ ounit fileutils ];

  meta = (builtins.removeAttrs ocaml_gettext.meta  [ "mainProgram" ]) // {
    description = "Internationalization library using camomile (i18n)";
  };

}