nixpkgs/pkgs/development/ocaml-modules/containers/data.nix
2023-09-29 08:16:05 +02:00

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";
};
}