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

buildDunePackage rec {

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

  propagatedBuildInputs = [ irmin fmt logs lwt ];

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

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

}