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

buildDunePackage rec {

  pname = "irmin-fs";

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

  propagatedBuildInputs = [ irmin astring logs lwt ];

  checkInputs = [ alcotest irmin-test irmin-watcher ];

  doCheck = true;

  meta = irmin.meta // {
    description = "Generic file-system backend for Irmin";
  };

}