a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
19 lines
406 B
Nix
19 lines
406 B
Nix
{ buildDunePackage, containers
|
|
, dune-configurator
|
|
, gen, iter, qcheck-core
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "containers-data";
|
|
|
|
inherit (containers) src version doCheck;
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
nativeCheckInputs = [ gen iter qcheck-core ];
|
|
|
|
propagatedBuildInputs = [ containers ];
|
|
|
|
meta = containers.meta // {
|
|
description = "A set of advanced datatypes for containers";
|
|
};
|
|
}
|