forked from janestreet/ecaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecaml.opam
26 lines (26 loc) · 821 Bytes
/
ecaml.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["Jane Street Group, LLC <[email protected]>"]
homepage: "https://github.com/janestreet/ecaml"
bug-reports: "https://github.com/janestreet/ecaml/issues"
dev-repo: "git+https://github.com/janestreet/ecaml.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/ecaml/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.07.0" & < "4.08.0"}
"async"
"async_unix"
"core"
"core_kernel"
"expect_test_helpers_kernel"
"ppx_jane"
"dune" {build & >= "1.5.1"}
]
synopsis: "Library for writing Emacs plugin in OCaml"
description: "
Ecaml is a library for writing Emacs plugins in OCaml. It uses Emacs
25 support for plugins to load native OCaml compiled code.
"