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" & < "4.13"} 13 "dune" {>= "1.10"} 14 "core" {>= "v0.13.0"} 15 "ppx_deriving" {>= "4.4"} 16 "ecaml" {>= "v0.13.0"} 17 "ocaml-migrate-parsetree" {>= "2.1.0"} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://gitlab.com/gopiandcode/gopcaml-mode.git" 34url { 35 src: 36 "https://gitlab.com/gopiandcode/gopcaml-mode/-/archive/0.0.2/gopcaml-mode-0.0.2.tar.gz" 37 checksum: [ 38 "sha256=7d3fad7be1bccbf24c0ef78d48023a29ca0d13b89c8b3d87a9fa51877e8b9947" 39 "md5=ceaec84f167872c79c84e71730449a63" 40 ] 41}