this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/ecaml" 5bug-reports: "https://github.com/janestreet/ecaml/issues" 6dev-repo: "git+https://github.com/janestreet/ecaml.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ecaml/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async" {>= "v0.15" & < "v0.16"} 15 "async_kernel" {>= "v0.15" & < "v0.16"} 16 "async_unix" {>= "v0.15" & < "v0.16"} 17 "core" {>= "v0.15" & < "v0.16"} 18 "core_kernel" {>= "v0.15" & < "v0.16"} 19 "core_unix" {>= "v0.15" & < "v0.16"} 20 "expect_test_helpers_core" {>= "v0.15" & < "v0.16"} 21 "ppx_jane" {>= "v0.15" & < "v0.16"} 22 "dune" {>= "2.0.0"} 23] 24synopsis: "Library for writing Emacs plugin in OCaml" 25description: " 26Ecaml is a library for writing Emacs plugins in OCaml. It uses Emacs 2725 support for plugins to load native OCaml compiled code. 28" 29url { 30src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/ecaml-v0.15.0.tar.gz" 31checksum: "sha256=89f2806dd37012b07ddbaf40c2d9cfb9de29289944d921d23f4fd9b93d5c7cba" 32}