-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathirmin-watcher.opam
More file actions
50 lines (48 loc) · 1.28 KB
/
irmin-watcher.opam
File metadata and controls
50 lines (48 loc) · 1.28 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Portable Irmin watch backends using FSevents or Inotify"
description: """
irmin-watcher implements [Irmin's watch hooks][watch] for various OS,
using FSevents in macOS and Inotify on Linux.
irmin-watcher is distributed under the ISC license.
[watch]: http://mirage.github.io/irmin/irmin/Irmin/Private/Watch/index.html#type-hook
"""
maintainer: ["Thomas Gazagnaire"]
authors: ["Thomas Gazagnaire"]
license: "ISC"
homepage: "https://github.com/mirage/irmin-watcher"
doc: "https://mirage.github.io/irmin-watcher/"
bug-reports: "https://github.com/mirage/irmin-watcher/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "5.1.0"}
"alcotest" {with-test}
"mtime" {with-test & >= "2.0.0"}
"inotify" {>= "2.6" & os = "linux"}
"inotify-eio" {>= "2.6" & os = "linux"}
"cf-lwt" {>= "0.4" & os = "macos"}
"lwt"
"eio" {>= "1.0"}
"eio_main" {with-test & >= "1.0"}
"logs"
"fmt"
"astring"
"fsevents-lwt" {os = "macos"}
"lwt_eio" {with-test | os = "macos"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mirage/irmin-watcher.git"