2020-09-25 04:45:31 +00:00
|
|
|
{ buildDunePackage, containers
|
2023-10-09 19:29:22 +00:00
|
|
|
, ocaml
|
2020-11-24 20:58:05 +00:00
|
|
|
, dune-configurator
|
2022-08-12 12:06:08 +00:00
|
|
|
, gen, iter, qcheck-core
|
2023-10-09 19:29:22 +00:00
|
|
|
, mdx
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "containers-data";
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
inherit (containers) src version;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
doCheck = containers.doCheck && ocaml.meta.branch != "5.0";
|
2023-03-24 00:07:29 +00:00
|
|
|
|
2020-11-24 20:58:05 +00:00
|
|
|
buildInputs = [ dune-configurator ];
|
2023-10-09 19:29:22 +00:00
|
|
|
nativeCheckInputs = [ mdx.bin ];
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [ gen iter qcheck-core ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ containers ];
|
|
|
|
|
|
|
|
meta = containers.meta // {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Set of advanced datatypes for containers";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|