this repo has no description
1opam-version: "2.0" 2maintainer: "Frédéric Bour <frederic.bour@lakaban.net>" 3authors: ["Frédéric Bour <frederic.bour@lakaban.net>"] 4homepage: "https://github.com/let-def/sturgeon" 5doc: "https://let-def.github.io/sturgeon/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/let-def/sturgeon.git" 8bug-reports: "https://github.com/let-def/sturgeon/issues" 9depends: [ 10 "ocaml" {>= "4.01.0"} 11 "ocamlfind" {build} 12 "ocamlbuild" {build} 13 "topkg" {build} 14 "inuit" 15 "result" 16] 17build: 18[[ "ocaml" "pkg/pkg.ml" "build" 19 "--pinned" "%{pinned}%" ]] 20synopsis: "A toolkit for communicating with Emacs" 21description: """ 22Sturgeon implements various tools for manipulating Emacs from OCaml: 23- `Sturgeon_sexp` implements the Emacs dialect of S-expressions 24- `Sturgeon_session` implements an "session protocol" to make RPC to Emacs from OCaml and vice versa 25- `Sturgeon_stui` is a session implementing an [Inuit](https://github.com/let-def/inuit) backend: one can now runs text user-interface on an Emacs buffer 26- `Sturgeon_recipes_*` offers different "rendez-vous" points to connect to Emacs 27 28Sturgeon is distributed under the ISC license.""" 29url { 30 src: 31 "https://github.com/let-def/sturgeon/releases/download/v0.2/sturgeon-0.2.tbz" 32 checksum: [ 33 "sha256=b74794477fca3e5b2a9d9f01a0e6dfa35d09db418aa72e5165e9f9bd40300401" 34 "md5=8157a30501b04f41fd7454c3c15dffb7" 35 ] 36}