nixpkgs-suyu/pkgs/development/ocaml-modules/containers/data.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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