4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
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";
|
|
};
|
|
}
|