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" {>= "2.5.0"} 13 "merlin-lib" {>= "4.6-414"} 14 "ocp-indent" {>= "1.0.0"} 15 "tuareg" {>= "2.0.7"} 16 "ocaml" {>= "4.08.0"} 17 "core" {>= "v0.15.0"} 18 "ppx_deriving" {>= "4.4"} 19 "ecaml" {>= "v0.15.0" & < "v0.16.0"} 20 "dune" {>= "2.9.0"} 21] 22 23conflicts: [ 24 "gopcaml-mode" 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://gitlab.com/gopiandcode/gopcaml-mode.git" 41url { 42 src: 43 "https://gitlab.com/gopiandcode/gopcaml-mode/-/archive/0.0.6-merlin-fix/gopcaml-mode-0.0.6-merlin-fix.tar.gz" 44 checksum: [ 45 "sha256=b64ac5d6b50b67e43b339538ad6dd34ffc85578a1067429fc5f02ae62494d5e7" 46 "md5=013ee8bba8ec0013999508f1f3759277" 47 ] 48} 49 50