15 lines
257 B
Nix
15 lines
257 B
Nix
{ lib, buildDunePackage, ocaml_gettext, ounit }:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "gettext-stub";
|
|
|
|
inherit (ocaml_gettext) src version meta;
|
|
|
|
propagatedBuildInputs = [ ocaml_gettext ];
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = lib.optional doCheck ounit;
|
|
}
|