21 lines
441 B
Nix
21 lines
441 B
Nix
{ buildDunePackage, containers
|
|
, dune-configurator
|
|
, gen, iter, qcheck-core
|
|
, mdx
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "containers-data";
|
|
|
|
inherit (containers) src version doCheck;
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
nativeCheckInputs = [ mdx.bin ];
|
|
checkInputs = [ gen iter qcheck-core ];
|
|
|
|
propagatedBuildInputs = [ containers ];
|
|
|
|
meta = containers.meta // {
|
|
description = "A set of advanced datatypes for containers";
|
|
};
|
|
}
|