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 ["jbuilder" "subst" "-p" name] {dev} 11 ["jbuilder" "build" "-p" name "-j" jobs] 12 ["jbuilder" "subst" "-p" name] {with-test & pinned} 13 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "ocaml" {>= "3.12.1"} 17 "base-bytes" 18 "base-unix" 19 "jbuilder" {>= "1.0+beta10"} 20] 21synopsis: "Windows system error codes" 22description: """ 23If your application is likely to run on Windows, simply replace uses of 24`Unix.error_message` with `Win_error.error_message` for enhanced error 25reporting. Note this code is platform-agnostic so can be linked into Unix 26applications too.""" 27url { 28 src: "https://github.com/djs55/ocaml-win-error/archive/0.3.tar.gz" 29 checksum: [ 30 "sha256=5868d38977c4a9487b22f17d5e13a13abda9c051874715b1c546e59489d0890e" 31 "md5=7f3db92cc61ebc5373c4c40d9345961a" 32 ] 33}