summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ocaml-gettext/stub.nix
blob: 51e902b914086eb30d13c0b5d5873f54dcc558d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
}