2020-09-25 04:45:31 +00:00
|
|
|
{ buildDunePackage, containers
|
2020-11-24 20:58:05 +00:00
|
|
|
, dune-configurator
|
2022-08-12 12:06:08 +00:00
|
|
|
, gen, iter, qcheck-core
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "containers-data";
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
inherit (containers) src version doCheck;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2020-11-24 20:58:05 +00:00
|
|
|
buildInputs = [ dune-configurator ];
|
2022-08-12 12:06:08 +00:00
|
|
|
checkInputs = [ gen iter qcheck-core ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ containers ];
|
|
|
|
|
|
|
|
meta = containers.meta // {
|
|
|
|
description = "A set of advanced datatypes for containers";
|
|
|
|
};
|
|
|
|
}
|