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.0"} 16 "ecaml" {>= "v0.13.0"} 17 "ocaml-migrate-parsetree" {>= "2.1.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.3/gopcaml-mode-0.0.3.tar.gz" 39 checksum: [ 40 "sha256=ce6ff4525e761d6438088f821743e71416303b17fde88767363a72b0dac9ea15" 41 "md5=de16a239e5aa70ed28e1069ed42393d6" 42 ] 43}