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" 11 12build: [ 13 ["dune" "build" "-p" name "-j" jobs] 14 [make "test" "-j" jobs] {with-test} 15] 16depends: [ 17 "dune" {>= "2.0"} 18 "ocaml" {>= "4.05.0"} 19 "ANSITerminal" 20 "menhir" {>= "20180528"} 21 "ppx_deriving" 22 "cmdliner" {>= "0.9.8" & < "2.0.0"} 23 "cmdliner" {with-test & < "1.1.0"} 24 "alcotest" {with-test & >= "0.8.5" & < "1.0.0"} 25 "bisect_ppx" {>= "1.4.1" & < "2.0.0"} 26] 27url { 28 src: 29 "https://github.com/0x0f0f0f/gobba/releases/download/0.3.3/minicaml-0.3.3.tbz" 30 checksum: [ 31 "sha256=eb55f3123aba4d33d16837c9eac0475617be50718706436d1817390b4211bab2" 32 "sha512=5d6e4003a95e74dc7159074f477d9e4e02525c1c2fdc8654cdce47fb8b16feb19b43f654d5f6fb9fe2a53fe5512281de5c62c1030c09e9025fe41e37e33f3421" 33 ] 34}