forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
20 lines
406 B
Nix
20 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";
|
|
};
|
|
}
|