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

buildDunePackage rec {

  pname = "irmin-fs";

  inherit (irmin) version src strictDeps;

  propagatedBuildInputs = [ irmin astring logs lwt ];

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

  doCheck = true;

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

}