this repo has no description
1opam-version: "2.0" 2synopsis: "An embeddable Lua 2.5 interpreter implemented in OCaml" 3maintainer: "Daniil Baturin <daniil+opam@baturin.org>" 4authors: [ 5 "Norman Ramsey <nr@cs.tufts.edu>" 6 "Christian Lindig <lindig@gmail.com>" 7] 8license: "BSD-2-Clause" 9homepage: "https://github.com/lindig/lua-ml" 10bug-reports: "https://github.com/lindig/lua-ml/issues" 11depends: [ 12 "ocaml" {>= "4.07"} 13 "ocamlbuild" 14 "ocamlfind" 15] 16build: 17 [ make "lib" ] 18url { 19 src: "https://github.com/lindig/lua-ml/archive/0.9.1.tar.gz" 20 checksum: [ 21 "md5=1010207b8c419a7b95a927d0d56c9171" 22 "sha512=5cb56cd96dbfae42835b3f10f275753685575472ace518e351e62e50a01c07a510203be21644fd3429680b926ecd9905d4dca1e101b762c442f7c6dc00b0f0ae" 23 ] 24} 25post-messages: [ 26 "Lua-ML does build with OCaml 5.0.0, however, it only works with it as long as the code is single-threaded: \ 27 trying to execute Lua code in more than one domain may incur in confusing, unpredictable failures." {ocaml:version >= "5.0"} 28]