this repo has no description
1opam-version: "2.0"
2synopsis: "A toolkit for communicating with Emacs"
3description: """
4Sturgeon implements various tools for manipulating Emacs from OCaml:
5- `Sturgeon_sexp` implements the Emacs dialect of S-expressions
6- `Sturgeon_session` implements an "session protocol" to make RPC to Emacs from OCaml and vice versa
7- `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
8- `Sturgeon_recipes_*` offers different "rendez-vous" points to connect to Emacs
9
10Sturgeon is distributed under the ISC license."""
11maintainer: "Frédéric Bour <frederic.bour@lakaban.net>"
12authors: "Frédéric Bour <frederic.bour@lakaban.net>"
13license: "ISC"
14homepage: "https://github.com/let-def/sturgeon"
15doc: "https://let-def.github.io/sturgeon/doc"
16bug-reports: "https://github.com/let-def/sturgeon/issues"
17depends: [
18 "ocaml" {>= "4.01.0"}
19 "dune"
20 "inuit"
21 "result"
22]
23build: [
24 ["dune" "subst"] {dev}
25 ["dune" "build" "-p" name "-j" jobs]
26]
27post-messages: """
28sturgeon installed.
29
30Emacs setup:
31
32Add opam emacs directory to your load-path if it is not there yet:
33 (let ((opam-share (ignore-errors (car (process-lines "opam" "config" "var" "share")))))
34 (when (and opam-share (file-directory-p opam-share))
35 (add-to-list 'load-path (expand-file-name "emacs/site-lisp" opam-share))))
36
37Load sturgeon file:
38 (require 'sturgeon)"""
39dev-repo: "git+https://github.com/let-def/sturgeon.git"
40url {
41 src: "https://github.com/let-def/sturgeon/archive/v0.4.2.tar.gz"
42 checksum: [
43 "md5=16f984c347be593eb590c0ad0611ee08"
44 "sha512=cfe091eeb36b14029ae1560a780ad099239de8f80f9c942dc6b0ef1b08bf47add0f29a575d8127ed4648cb3ab27f3ca0d520befa55aeb22411dcfca545e0bd44"
45 ]
46}