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.14" & < "v0.15"} 15 "async_kernel" {>= "v0.14" & < "v0.15"} 16 "async_unix" {>= "v0.14" & < "v0.15"} 17 "core" {>= "v0.14" & < "v0.15"} 18 "core_kernel" {>= "v0.14" & < "v0.15"} 19 "expect_test_helpers_core" {>= "v0.14" & < "v0.15"} 20 "ppx_jane" {>= "v0.14" & < "v0.15"} 21 "dune" {>= "2.0.0"} 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.14/files/ecaml-v0.14.0.tar.gz" 31 checksum: [ 32 "sha256=ca97b30782e1b9fc42ccd54ba6afd60a7eb1087b56f3e21076ae33abfa638dfa" 33 "md5=ecae1a972130cd93c64eecc1ed71cad1" 34 ] 35}