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