2020-08-17 07:22:39 +02:00
|
|
|
{ buildDunePackage, containers
|
2020-11-15 06:04:44 +01:00
|
|
|
, dune-configurator
|
2022-07-13 17:10:27 +02:00
|
|
|
, gen, iter, qcheck-core
|
2020-08-17 07:22:39 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
|
|
|
pname = "containers-data";
|
|
|
|
|
2022-07-13 17:10:27 +02:00
|
|
|
inherit (containers) src version doCheck;
|
2020-08-17 07:22:39 +02:00
|
|
|
|
2020-11-15 06:04:44 +01:00
|
|
|
buildInputs = [ dune-configurator ];
|
2022-03-01 16:42:22 +01:00
|
|
|
checkInputs = [ gen iter qcheck-core ];
|
2020-08-17 07:22:39 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ containers ];
|
|
|
|
|
|
|
|
meta = containers.meta // {
|
|
|
|
description = "A set of advanced datatypes for containers";
|
|
|
|
};
|
|
|
|
}
|