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

17 lines
303 B
Nix
Raw Normal View History

{ buildDunePackage, ocaml_gettext, dune-configurator, ounit }:
buildDunePackage rec {
pname = "gettext-stub";
inherit (ocaml_gettext) src version useDune2 meta;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ ocaml_gettext ];
doCheck = true;
checkInputs = [ ounit ];
}