about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/pack.nix
blob: 8c0c7b2a3b00008f4e9022832f9f99660eb08f2a (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
{ lib, buildDunePackage
, index, ppx_irmin, irmin, optint, fmt, logs, lwt, mtime, cmdliner, checkseum, rusage
, alcotest, alcotest-lwt, astring, irmin-test
}:

buildDunePackage rec {
  minimalOCamlVersion = "4.10";
  duneVersion = "3";

  pname = "irmin-pack";

  inherit (irmin) version src strictDeps;

  nativeBuildInputs = [ ppx_irmin ];

  propagatedBuildInputs = [ index irmin optint fmt logs lwt mtime cmdliner checkseum rusage ];

  checkInputs = [ astring alcotest alcotest-lwt irmin-test ];

  doCheck = true;

  meta = irmin.meta // {
    description = "Irmin backend which stores values in a pack file";
    mainProgram = "irmin_fsck";
  };

}