summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin-watcher/default.nix
blob: 82818b39492d2e6428a82f996ae988e86dd6390a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, fetchurl, buildDunePackage
, astring, fmt, logs, ocaml_lwt
}:

buildDunePackage rec {
  pname = "irmin-watcher";
  version = "0.4.1";

  useDune2 = true;

  src = fetchurl {
    url = "https://github.com/mirage/irmin-watcher/releases/download/${version}/irmin-watcher-${version}.tbz";
    sha256 = "00d4ph4jbsw6adp3zqdrwi099hfcf7p1xzi0685qr7bgcmandjfv";
  };

  propagatedBuildInputs = [ astring fmt logs ocaml_lwt ];

  meta = {
    homepage = "https://github.com/mirage/irmin-watcher";
    description = "Portable Irmin watch backends using FSevents or Inotify";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };

}