this repo has no description
1opam-version: "2.0" 2maintainer: "dave@recoil.org" 3authors: [ "David Scott" ] 4license: "ISC" 5homepage: "https://github.com/djs55/ocaml-win-error" 6dev-repo: "git+https://github.com/djs55/ocaml-win-error.git" 7bug-reports: "https://github.com/djs55/ocaml-win-error/issues" 8 9build: [ 10 [make] 11 [make "test"] {with-test} 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "win-error"] 15 16depends: [ 17 "ocaml" {>= "3.12.1" & < "5.0.0"} 18 "base-bytes" 19 "base-unix" 20 "ocamlfind" {build} 21 "ocamlbuild" {build} 22] 23synopsis: "Windows system error codes" 24description: """ 25If your application is likely to run on Windows, simply replace uses of 26`Unix.error_message` with `Win_error.error_message` for enhanced error 27reporting. Note this code is platform-agnostic so can be linked into Unix 28applications too.""" 29flags: light-uninstall 30url { 31 src: "https://github.com/djs55/ocaml-win-error/archive/v0.2.tar.gz" 32 checksum: [ 33 "sha256=3b832caf6af760c857dc26868f0da6d4849898593545f5e65b2f64abfab1f6a6" 34 "md5=e90c76fc5c599061718de385099cb1ce" 35 ] 36}