1{ buildDunePackage, containers
2, ocaml
3, dune-configurator
4, gen, iter, qcheck-core
5, mdx
6}:
7
8buildDunePackage {
9 pname = "containers-data";
10
11 inherit (containers) src version;
12
13 doCheck = containers.doCheck && ocaml.meta.branch != "5.0";
14
15 buildInputs = [ dune-configurator ];
16 nativeCheckInputs = [ mdx.bin ];
17 checkInputs = [ gen iter qcheck-core ];
18
19 propagatedBuildInputs = [ containers ];
20
21 meta = containers.meta // {
22 description = "A set of advanced datatypes for containers";
23 };
24}