Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, containers
2, dune-configurator
3, gen, iter, qcheck-core
4}:
5
6buildDunePackage {
7 pname = "containers-data";
8
9 inherit (containers) src version doCheck;
10
11 duneVersion = "3";
12
13 buildInputs = [ dune-configurator ];
14 checkInputs = [ gen iter qcheck-core ];
15
16 propagatedBuildInputs = [ containers ];
17
18 meta = containers.meta // {
19 description = "A set of advanced datatypes for containers";
20 };
21}