this repo has no description
1opam-version: "2.0" 2maintainer: "sudo-woodo3@protonmail.com" 3authors: ["Alessandro Cheli"] 4homepage: "https://github.com/0x0f0f0f/minicaml" 5bug-reports: "https://github.com/0x0f0f0f/minicaml/issues" 6dev-repo: "git+https://github.com/0x0f0f0f/minicaml.git" 7license: "MIT" 8synopsis: "A simple, didactical, purely functional programming language" 9description: "A simple, didactical, purely functional programming language written for the programming 2 course at the University of Pisa, extended with a simple parser made with Menhir and ocamllex" 10doc: "https://github.com/0x0f0f0f/minicaml" 11build: [ 12 ["dune" "build" "-p" name "-j" jobs] 13 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 14] 15depends: [ 16 "dune" {>= "2.0"} 17 "ocaml" {>= "4.05.0"} 18 "ANSITerminal" 19 "menhir" 20 "ppx_deriving" 21 "cmdliner" {< "2.0.0"} 22 "alcotest" {with-test & >= "0.8.5"} 23 "bisect_ppx" {with-test & >= "1.5.0"} 24] 25url { 26 src: 27 "https://github.com/0x0f0f0f/gobba/releases/download/0.3.1/minicaml-0.3.1.tbz" 28 checksum: [ 29 "sha256=eeceeb87713fef842ddb1b0d3c234d22a5d0b6edcd36b1fd12f5e57a27924a4d" 30 "sha512=c3942b7520062f1000e1d005b6c720d91b9eabb65952aaa04066297b04b5a3105f3547f0eeef51f1f90e9436be159918a110c7a292467bfba249df14b847b121" 31 ] 32}