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

buildDunePackage rec {

  pname = "irmin-pack";

  inherit (irmin) version src;

  propagatedBuildInputs = [ index irmin ];

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

  doCheck = true;

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

}