this repo has no description
1opam-version: "2.0"
2maintainer: "Anil Madhavapeddy <anil@recoil.org>"
3authors: ["Anil Madhavapeddy <anil@recoil.org>"]
4homepage: "https://github.com/avsm/ocaml-yaml"
5doc: "http://anil-code.github.io/ocaml-yaml"
6license: "ISC"
7dev-repo: "git+https://github.com/avsm/ocaml-yaml.git"
8bug-reports: "https://github.com/avsm/ocaml-yaml/issues"
9tags: ["org:mirage" "org:ocamllabs"]
10available: arch != "ppc64"
11depends: [
12 "ocaml" {>= "4.03.0"}
13 "jbuilder" {>= "1.0+beta17"}
14 "ctypes" {>= "0.13.0"}
15 "ppx_sexp_conv" {>= "v0.9.0"}
16 "ocaml-migrate-parsetree" {< "2.0.0"}
17 "sexplib"
18 "rresult" {< "0.7.0"}
19 "fmt"
20 "logs"
21 "bos"
22 "alcotest" {with-test}
23 "ezjsonm" {with-test}
24]
25build: [
26 ["jbuilder" "subst" "-p" name] {dev}
27 ["jbuilder" "build" "-p" name "-j" jobs]
28 ["jbuilder" "runtest" "-p" name] {with-test}
29]
30synopsis: "Parse and generate YAML 1.1 files"
31description: """
32This is an OCaml library to parse and generate the YAML file
33format. It is intended to interoperable with the [Ezjsonm](https://github.com/mirage/ezjsonm)
34JSON handling library, if the simple common subset of Yaml
35is used. Anchors and other advanced Yaml features are not
36implemented in the JSON compatibility layer.
37
38The [Yaml module docs](http://anil-code.recoil.org/ocaml-yaml/yaml/Yaml/index.html) are browseable online."""
39url {
40 src:
41 "https://github.com/avsm/ocaml-yaml/releases/download/v0.2.0/yaml-0.2.0.tbz"
42 checksum: [
43 "sha256=7f5bc9352b5d18671281986a72f74be29c9397a2411917ce3cbf5959888a4815"
44 "md5=97f4d85f56eb21fabc210b6ff009a771"
45 ]
46}