this repo has no description
1opam-version: "2.0" 2synopsis: "Universal toplevel for OCaml" 3description: 4 "utop is an improved toplevel (i.e., Read-Eval-Print Loop or REPL) for OCaml. It can run in a terminal or in Emacs. It supports line edition, history, real-time and context sensitive completion, colors, and more. It integrates with the Tuareg mode in Emacs." 5maintainer: ["jeremie@dimino.org"] 6authors: ["Jérémie Dimino"] 7license: "BSD-3-Clause" 8homepage: "https://github.com/ocaml-community/utop" 9doc: "https://ocaml-community.github.io/utop/" 10bug-reports: "https://github.com/ocaml-community/utop/issues" 11depends: [ 12 "dune" {>= "2.0"} 13 "ocaml" {>= "4.11.0" & < "5.2"} 14 "base-unix" 15 "base-threads" 16 "ocamlfind" {>= "1.7.2"} 17 "lambda-term" {>= "3.1.0" & < "4.0"} 18 "logs" 19 "lwt" 20 "lwt_react" 21 "zed" {>= "3.2.0"} 22 "react" {>= "1.0.0"} 23 "cppo" {>= "1.1.2"} 24 "alcotest" {with-test} 25 "xdg" {>= "3.9.0"} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/ocaml-community/utop.git" 42url { 43 src: 44 "https://github.com/ocaml-community/utop/releases/download/2.13.0/utop-2.13.0.tbz" 45 checksum: [ 46 "sha256=88450f20006c2d10781abe9841bad2a57e7298b5ecf1be33bbf1eadebd1286d8" 47 "sha512=44ead6eac31c62dee60dc796e5dc1160610b8e6b00b862fae8ac297395a26d422237e7d5635f10bce59f4e5fbb16dbbe4596a55d30f8da699b256ac5d35076b2" 48 ] 49} 50x-commit-hash: "97e7ecfb4f2be71dcd270e13155797d0f873f437" 51available: os != "win32"