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

buildDunePackage rec {
  minimumOCamlVersion = "4.02.3";

  pname = "irmin-pack";

  inherit (irmin) version src;

  propagatedBuildInputs = [ index irmin ocaml_lwt ];

  checkInputs = lib.optionals doCheck [ alcotest-lwt irmin-test ];

  doCheck = true;

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

}