this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Ultimate Ocaml editing plugin, providing advanced structural editing, movement and analysis in Emacs" 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." 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 "ocaml" {>= "4.08.0" & < "5.0.0"} 13 "dune" {>= "2.9.0"} 14 "core" {>= "v0.13.0"} 15 "ppx_deriving" {>= "4.4.0"} 16 "ecaml" {>= "v0.15.0"} 17 "ocaml-migrate-parsetree" {>= "2.4.0"} 18 "merlin" {>= "2.5.0"} 19 "ocp-indent" {>= "1.0.0"} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://gitlab.com/gopiandcode/gopcaml-mode.git" 36url { 37 src: 38 "https://gitlab.com/gopiandcode/gopcaml-mode/-/archive/0.0.6-fix-2/gopcaml-mode-0.0.6-fix-2.tar.gz" 39 checksum: [ 40 "sha256=f870b9167088321132dde03ddcd6758dbb87b02e07ec59ffc6f1d3ea0a94a990" 41 "md5=063079cf58a69e5bd0177d32c3c7bca3" 42 ] 43}