about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/containers.nix
blob: aa003f39b3f4706719c1b9927667e0b833661afe (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
34
{ buildDunePackage
, irmin, irmin-fs, ppx_irmin, lwt, mtime
, alcotest, alcotest-lwt, cacert
}:

buildDunePackage {
  pname = "irmin-containers";

  inherit (ppx_irmin) src version strictDeps;
  duneVersion = "3";

  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";
  };
}