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