Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, irmin, irmin-test, fmt, logs, lwt, alcotest }:
2
3buildDunePackage rec {
4
5 pname = "irmin-chunk";
6 inherit (irmin) version src strictDeps;
7 duneVersion = "3";
8
9 propagatedBuildInputs = [ irmin fmt logs lwt ];
10
11 doCheck = true;
12 checkInputs = [ alcotest irmin-test ];
13
14 meta = irmin.meta // {
15 description = "Irmin backend which allow to store values into chunks";
16 };
17
18}
19