about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/chunk.nix
blob: 61a0d6021ab645097281b0d239d7874a027234cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildDunePackage, irmin, irmin-test, fmt, logs, lwt, alcotest }:

buildDunePackage rec {

  pname = "irmin-chunk";
  inherit (irmin) version src strictDeps;
  duneVersion = "3";

  propagatedBuildInputs = [ irmin fmt logs lwt ];

  doCheck = true;
  checkInputs = [ alcotest irmin-test ];

  meta = irmin.meta // {
    description = "Irmin backend which allow to store values into chunks";
  };

}