this repo has no description
1opam-version: "2.0" 2maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>" 3authors: "Thomas Gazagnaire <thomas@gazagnaire.org>" 4homepage: "https://github.com/mirage/irmin-watcher" 5doc: "https://mirage.github.io/irmin-watcher/" 6dev-repo: "git+https://github.com/mirage/irmin-watcher.git" 7bug-reports: "https://github.com/mirage/irmin-watcher/issues" 8license: "ISC" 9 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 ["jbuilder" "build" "-p" name "-j" jobs] 13 ["jbuilder" "runtest" "-p" name] {with-test} 14] 15depends: [ 16 "ocaml" {>= "4.02.0"} 17 "jbuilder" {>= "1.0+beta10"} 18 "alcotest" {with-test & < "1.4.0"} 19 "mtime" {with-test & >= "1.0.0" & < "2.0.0"} 20 "lwt" {>= "2.4.7"} 21 "logs" 22 "fmt" 23 "astring" 24] 25depopts: ["inotify" "osx-fsevents"] 26conflicts: [ "osx-fsevents" {< "0.2.0"} ] 27 28synopsis: "Portable Irmin watch backends using FSevents or Inotify" 29description: """ 30irmin-watcher implements [Irmin's watch hooks][watch] for various OS, 31using FSevents in OSX and Inotify on Linux. 32 33irmin-watcher is distributed under the ISC license. 34 35[watch]: http://mirage.github.io/irmin/Irmin.Private.Watch.html""" 36url { 37 src: 38 "https://github.com/mirage/irmin-watcher/releases/download/0.3.0/irmin-watcher-0.3.0.tbz" 39 checksum: [ 40 "sha256=a8d65cb05ff06dc9e41dce620af0f61e33ae7c208496a2633d023e6e2bb6619c" 41 "md5=1060efb3507315f5056f4db65a8d978d" 42 ] 43}