this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25600 from dbuenzli/b0-publish-down.0.2.0

Add: down.0.2.0

authored by

Raphaël Proust and committed by
GitHub
ee88de27 e812bf72

+48
+48
packages/down/down.0.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "An OCaml toplevel (REPL) upgrade" 3 + description: """\ 4 + Down is an unintrusive user experience upgrade for the `ocaml` 5 + toplevel (REPL). 6 + 7 + Simply load the zero dependency `Down` library in the `ocaml` toplevel 8 + and you get line edition, history, session support and identifier 9 + completion and documentation (courtesy of [`ocp-index`][ocp-index]). 10 + 11 + Add this to your `~/.ocamlinit`: 12 + 13 + #use "down.top" 14 + 15 + ![tty](doc/tty.png) 16 + 17 + Down is distributed under the ISC license. 18 + 19 + Homepage: http://erratique.ch/software/down 20 + 21 + [ocp-index]: https://github.com/OCamlPro/ocp-index""" 22 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 23 + authors: "The down programmers" 24 + license: "ISC" 25 + tags: ["dev" "toplevel" "repl" "org:erratique"] 26 + homepage: "https://erratique.ch/software/down" 27 + doc: "https://erratique.ch/software/down/doc/" 28 + bug-reports: "https://github.com/dbuenzli/down/issues" 29 + depends: [ 30 + "ocaml" {>= "4.14.0"} 31 + "ocamlfind" {build} 32 + "ocamlbuild" {build} 33 + "topkg" {build & >= "1.0.3"} 34 + "uucp" {dev} 35 + ] 36 + build: [ 37 + "ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%" "--lib-dir" "%{lib}%" 38 + ] 39 + install: [ 40 + ["install" "-d" "%{lib}%/ocaml/"] 41 + ["install" "src/down.top" "src/down.nattop" "%{lib}%/ocaml/"] 42 + ] 43 + dev-repo: "git+https://erratique.ch/repos/down.git" 44 + url { 45 + src: "https://erratique.ch/software/down/releases/down-0.2.0.tbz" 46 + checksum: 47 + "sha512=d0991ff7238a15252f06f96e0ab29a2cdf349762db2057ba0b6b90d9b2152fc65675b593f5b21a97c5900bc576f3ff45e06f4306793a58de6d3f648496c448ff" 48 + }