this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: "David Scott" 4license: "ISC" 5homepage: "https://github.com/mirage/ocaml-win-eventlog" 6doc: "https://mirage.github.io/ocaml-win-eventlog/" 7bug-reports: "https://github.com/mirage/ocaml-win-eventlog/issues" 8depends: [ 9 "ocaml" 10 "dune" 11 "result" 12 "logs" 13] 14build: [ 15 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs] 17 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 18] 19dev-repo: "git+https://github.com/mirage/ocaml-win-eventlog.git" 20synopsis: "Log via the Windows event log from OCaml programs" 21description: """ 22A low-level example: 23 24```ocaml 25let log = Eventlog.register "Mirage.exe" in 26let category = 0 and event = 1 in 27Eventlog.report log `Success category event [| 28 "insertion string 1"; 29 "insertion string 2"; 30|] 31``` 32""" 33url { 34 src: 35 "https://github.com/mirage/ocaml-win-eventlog/releases/download/0.3/win-eventlog-0.3.tbz" 36 checksum: [ 37 "sha256=b0e981da365546f74a027c2d8ec6a5fa9e36965337b385747f702b897f4b0543" 38 "sha512=5605ca536241ffbec31ed58c679a7d51bd4774af773aa99df7d0475019abc873eafae1700510a79a7eddee30a88f1544982b54e4c3a89de072509e21eda0e2c3" 39 ] 40}