this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Ultimate Ocaml editing plugin, providing advanced structural editing, movement and analysis in Emacs (uses Merlin parser)"
4description:
5 "Gopcaml-mode is a plugin for emacs for editing OCaml code. It aims to extend existing Emacs editing experience to closer match the features in modern IDEs (uses Merlin's error tolerant parser)."
6maintainer: ["kirang@comp.nus.edu.sg"]
7authors: ["Kiran Gopinathan"]
8license: "GPL-3.0-only"
9homepage: "https://gitlab.com/gopiandcode/gopcaml-mode"
10bug-reports: "https://gitlab.com/gopiandcode/gopcaml-mode/issues"
11depends: [
12 "merlin" {>= "3.6.0"}
13 "ocp-indent" {>= "1.0.0"}
14 "dune" {>= "2.9.0"}
15 "dot-merlin-reader" {>= "4.0"}
16 "yojson" {>= "1.6.0"}
17 "csexp" {>= "1.2.3"}
18 "result" {>= "1.5"}
19 "ppx_sexp_conv" {>= "v0.14.3"}
20 "ppx_let" {>= "v0.14.0"}
21 "ppx_here" {>= "v0.14.0"}
22 "ocaml" {>= "4.12.0" & < "4.13"}
23 "core" {>= "v0.13.0"}
24 "ppx_deriving" {>= "4.4"}
25 "ecaml" {>= "v0.13.0"}
26]
27conflicts: [
28 "gopcaml-mode"
29]
30build: [
31 ["dune" "subst"] {dev}
32 [
33 "dune"
34 "build"
35 "-p"
36 name
37 "-j"
38 jobs
39 "@install"
40 "@runtest" {with-test}
41 "@doc" {with-doc}
42 ]
43]
44dev-repo: "git+https://gitlab.com/gopiandcode/gopcaml-mode.git"
45url {
46 src:
47 "https://gitlab.com/gopiandcode/gopcaml-mode/uploads/baa1e6a4bc822774118919181f9e879e/gopcaml-mode-0.0.4-merlin.tar.gz"
48 checksum: [
49 "sha256=f37faf01dd0153c4f281d5067a89f5aafc3999131c765c690a9dd3807308b4cd"
50 "md5=c23e5a1a559ecfcf924ecae0ba13f002"
51 ]
52}
53
54