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.13" & < "v0.14"} 15 "async_kernel" {>= "v0.13" & < "v0.14"} 16 "async_unix" {>= "v0.13" & < "v0.14"} 17 "core" {>= "v0.13" & < "v0.14"} 18 "core_kernel" {>= "v0.13" & < "v0.14"} 19 "expect_test_helpers_kernel" {>= "v0.13" & < "v0.14"} 20 "ppx_jane" {>= "v0.13" & < "v0.14"} 21 "dune" {>= "1.5.1"} 22] 23synopsis: "Library for writing Emacs plugin in OCaml" 24description: " 25Ecaml is a library for writing Emacs plugins in OCaml. It uses Emacs 2625 support for plugins to load native OCaml compiled code. 27" 28url { 29 src: 30 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/ecaml-v0.13.0.tar.gz" 31 checksum: [ 32 "sha256=20de8c606f4d0aea48c9353d1202c388fdd5d9faecb22799e46b5e2f2f8a4458" 33 "md5=4f58053a70cb5be73c8d98abacaab3a9" 34 ] 35}