about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/containers/data.nix
blob: 98b6ec750640f2987a9834cdc6e630b9cf43c94a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ buildDunePackage, containers
, ocaml
, dune-configurator
, gen, iter, qcheck-core
, mdx
}:

buildDunePackage {
  pname = "containers-data";

  inherit (containers) src version;

  doCheck = containers.doCheck && ocaml.meta.branch != "5.0";

  buildInputs = [ dune-configurator ];
  nativeCheckInputs = [ mdx.bin ];
  checkInputs = [ gen iter qcheck-core ];

  propagatedBuildInputs = [ containers ];

  meta = containers.meta // {
    description = "A set of advanced datatypes for containers";
  };
}