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 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs] 13] 14 15run-test: ["dune" "runtest" "-p" name] 16 17depends: [ 18 "ocaml" {>= "4.02.0"} 19 "dune" {< "2.0"} 20 "alcotest" {with-test} 21 "mtime" {with-test & >= "1.0.0"} 22 "lwt" 23 "logs" 24 "fmt" 25 "astring" 26 "inotify" {os = "linux"} 27 "osx-fsevents" {os = "macos" & >= "0.2.0"} 28] 29 30synopsis: "Portable Irmin watch backends using FSevents or Inotify" 31description: """ 32irmin-watcher implements [Irmin's watch hooks][watch] for various OS, 33using FSevents in OSX and Inotify on Linux. 34 35irmin-watcher is distributed under the ISC license. 36 37[watch]: http://mirage.github.io/irmin/irmin/Irmin/Private/Watch/index.html#type-hook 38""" 39url { 40 src: 41 "https://github.com/mirage/irmin-watcher/releases/download/0.4.0/irmin-watcher-0.4.0.tbz" 42 checksum: [ 43 "sha256=464d5d71763c1fcf1f61f4fe5e25944b85dfc12b5e6115ba533bdd557eed378a" 44 "md5=3dfcddafafa4c57814430c0ea87df5b3" 45 ] 46}