Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
392 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildDunePackage,
ocaml_gettext,
dune-configurator,
ounit2,
}:
buildDunePackage {
pname = "gettext-stub";
inherit (ocaml_gettext) src version;
minimalOCamlVersion = "4.14";
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ ocaml_gettext ];
doCheck = true;
checkInputs = [ ounit2 ];
meta = removeAttrs ocaml_gettext.meta [ "mainProgram" ];
}