about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/fs.nix
blob: 196f75ff26f0360c0a8939a2397a1e7cfb3cad1e (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 ];

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

  doCheck = true;

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

}