3a4df29a92
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
18 lines
368 B
Nix
18 lines
368 B
Nix
{ buildDunePackage, ocaml_gettext, dune-configurator, ounit }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "gettext-stub";
|
|
|
|
inherit (ocaml_gettext) src version useDune2;
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
|
|
propagatedBuildInputs = [ ocaml_gettext ];
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ ounit ];
|
|
|
|
meta = builtins.removeAttrs ocaml_gettext.meta [ "mainProgram" ];
|
|
}
|