aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/containers/data.nix
blob: 3694a7b2941b03908d2560ebcc6c3cd1c6938bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ buildDunePackage, containers
, dune-configurator
, gen, iter, qcheck
}:

buildDunePackage {
  pname = "containers-data";

  inherit (containers) src version useDune2;

  buildInputs = [ dune-configurator ];
  doCheck = true;
  checkInputs = [ gen iter qcheck ];

  propagatedBuildInputs = [ containers ];

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