nixpkgs/pkgs/development/ocaml-modules/ocaml-gettext/stub.nix

17 lines
303 B
Nix
Raw Normal View History

2021-02-16 07:46:31 +00:00
{ buildDunePackage, ocaml_gettext, dune-configurator, ounit }:
buildDunePackage rec {
pname = "gettext-stub";
2021-02-16 07:46:31 +00:00
inherit (ocaml_gettext) src version useDune2 meta;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ ocaml_gettext ];
doCheck = true;
2021-02-16 07:46:31 +00:00
checkInputs = [ ounit ];
}