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>" "Christian Lindig <lindig@gmail.com>" 6] 7license: "BSD-2-Clause" 8homepage: "https://github.com/lindig/lua-ml" 9bug-reports: "https://github.com/lindig/lua-ml/issues" 10dev-repo: "git+https://github.com/lindig/lua-ml.git" 11depends: [ 12 "ocaml" {>= "4.07"} 13 "ocamlbuild" 14 "ocamlfind" 15] 16build: [make "lib"] 17url { 18 src: "https://github.com/lindig/lua-ml/archive/0.9.2.tar.gz" 19 checksum: [ 20 "md5=22fd2043f8f40100d9bcb8b0a8e6594b" 21 "sha512=0719252c753a81301ff2de1b4de7a60a136afe2d73fc75c332529fed7f0975d44b85cbd2cad1762f8f9985110108b85a8e935222c7cbf430993fbafc2253d6fa" 22 ] 23} 24post-messages: [ 25 "Lua-ML does build with OCaml 5.0.0, however, it only works with it as long as the code is single-threaded: \ 26 trying to execute Lua code in more than one domain may incur in confusing, unpredictable failures." {ocaml:version >= "5.0"} 27]