about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/containers.nix
blob: 73cd25f3170dda15256d00f8c3cd8c1928ef845e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ buildDunePackage
, irmin, irmin-fs, ppx_irmin, lwt, mtime
, alcotest, alcotest-lwt, cacert
}:

buildDunePackage {
  pname = "irmin-containers";

  inherit (ppx_irmin) src version strictDeps;

  nativeBuildInputs = [
    ppx_irmin
  ];

  propagatedBuildInputs = [
    irmin
    irmin-fs
    ppx_irmin
    lwt
    mtime
  ];

  doCheck = true;
  checkInputs = [
    alcotest
    alcotest-lwt
    cacert
  ];

  meta = ppx_irmin.meta // {
    description = "Mergeable Irmin data structures";
  };
}