this repo has no description
1opam-version: "2.0"
2synopsis: "Writing Webassembly text format in DSL"
3description: """
4This library helps you to write Webassembly text format(WAT) in OCaml source code with DSL. It helps you to write a code generator for your language to WASM.
5
6You can generate it with [Binaryen](https://github.com/WebAssembly/binaryen).
7"""
8maintainer: "Vincent Chan <okcdz@diverse.space>"
9authors: "Vincent Chan <okcdz@diverse.space>"
10license: "MIT"
11homepage: "https://github.com/vincentdchan/ocaml-binaryen-dsl"
12bug-reports: "https://github.com/vincentdchan/ocaml-binaryen-dsl/issues"
13dev-repo: "git+https://github.com/vincentdchan/ocaml-binaryen-dsl.git"
14depends: [
15 "ocaml"
16 "core" {< "v0.15"}
17 "dune" {>= "2.8"}
18 "ctypes" {>= "0.14.0" & < "0.21.0"}
19 "libbinaryen" {< "102"}
20]
21build: [
22 ["dune" "build" "-p" name "-j" jobs]
23]
24available: arch != "arm32" & arch !="ppc64" & arch != "s390x" & arch != "x86_32"
25url {
26 src:
27 "https://github.com/vincentdchan/ocaml-binaryen-dsl/archive/0.6.tar.gz"
28 checksum: [
29 "md5=f12f0fbf36f4f69d0a18430b542ee118"
30 "sha512=c6d32c989aed719388c9332757848202a2222a70f0ee3c65bb9a1ea52dde2bceab977da93b0a5dabec6e0701ce50b3b438175162eaa343427a8702f8357543a0"
31 ]
32}