this repo has no description
1opam-version: "2.0"
2synopsis: "Portable Irmin watch backends using FSevents or Inotify"
3description: """
4irmin-watcher implements [Irmin's watch hooks][watch] for various OS,
5using FSevents in macOS and Inotify on Linux.
6
7irmin-watcher is distributed under the ISC license.
8
9[watch]: http://mirage.github.io/irmin/irmin/Irmin/Private/Watch/index.html#type-hook
10"""
11maintainer: ["Thomas Gazagnaire"]
12authors: ["Thomas Gazagnaire"]
13license: "ISC"
14homepage: "https://github.com/mirage/irmin-watcher"
15doc: "https://mirage.github.io/irmin-watcher/"
16bug-reports: "https://github.com/mirage/irmin-watcher/issues"
17depends: [
18 "dune" {>= "2.8"}
19 "ocaml" {>= "4.02.0"}
20 "alcotest" {with-test}
21 "mtime" {with-test & >= "1.0.0" & < "2.0.0"}
22 "inotify" {os = "linux"}
23 "cf-lwt" {>= "0.4"}
24 "lwt"
25 "logs"
26 "fmt"
27 "astring"
28 "fsevents-lwt"
29 "odoc" {with-doc}
30]
31build: [
32 ["dune" "subst"] {dev}
33 [
34 "dune"
35 "build"
36 "-p"
37 name
38 "-j"
39 jobs
40 "@install"
41 "@runtest" {with-test}
42 "@doc" {with-doc}
43 ]
44]
45dev-repo: "git+https://github.com/mirage/irmin-watcher.git"
46x-commit-hash: "7f6bef9a480d945732ffc5b1b2d7ca07291deba9"
47url {
48 src:
49 "https://github.com/mirage/irmin-watcher/releases/download/0.5.0/irmin-watcher-0.5.0.tbz"
50 checksum: [
51 "sha256=beae24c1acf84141bdc747c611b40c02e0c68e54f7ffa966f318974d4a899993"
52 "sha512=f91a80fc483e5dbb47e64869857e84cfaadb44c6ea625e909738370fdfd24fc2f56303f3d60eeda832baac2a57cd093c8c40e20044d90c5a870f28f7e6c95451"
53 ]
54}
55x-maintenance-intent: [ "(latest)" ]