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

buildDunePackage {
  pname = "containers-data";

  inherit (containers) src version;

  doCheck = true;
  checkInputs = [ gen iter qcheck ];

  propagatedBuildInputs = [ containers ];

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