depot/third_party/nixpkgs/pkgs/development/ocaml-modules/containers/data.nix

20 lines
400 B
Nix
Raw Normal View History

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