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-error"
6bug-reports: "https://github.com/mirage/ocaml-win-error/issues"
7doc: "https://mirage.github.io/ocaml-win-error/"
8depends: [
9 "ocaml" {>= "3.12.1"}
10 "base-bytes"
11 "base-unix"
12 "dune" {>= "1.0"}
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-error.git"
20synopsis: "Manipulate Windows system errors"
21description: """
22If your application is likely to run on Windows, simply replace uses of
23`Unix.error_message` with `Win_error.error_message`. When the application
24runs on Windows, Windows system errors will be decoded; when the application
25runs elsewhere then the existing `Unix.error_message` function is
26called transparently.
27"""
28url {
29 src:
30 "https://github.com/mirage/ocaml-win-error/releases/download/1.0/win-error-1.0.tbz"
31 checksum: [
32 "sha256=c00aecc776b1cd6ac2d2aa442e2355ae6a44e4760f3ba1fc7117dc1e2231a400"
33 "md5=9a627ed19f23485d5889600986684758"
34 ]
35}
36