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://0x0f0f0f.github.io/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 "ocamline" {>= "1.0" & < "1.2"}
21 "menhir" {>= "20180528"}
22 "ppx_deriving"
23 "cmdliner" {>= "0.9.8" & < "2.0.0"}
24 "cmdliner" {with-test & < "1.1.0"}
25 "alcotest" {with-test & >= "0.8.5"}
26 "bisect_ppx" {>= "1.4.1" & < "2.0.0"}
27]
28url {
29 src:
30 "https://github.com/0x0f0f0f/gobba/releases/download/0.4/minicaml-0.4.tbz"
31 checksum: [
32 "sha256=d363b413abc43d1ee991b5ad06128e2a02d758324f2b83709aab4955c80cfbb4"
33 "sha512=445c2f822b497d9e198a47df887c7708812c877d3ac23c6a409d4289fee02d7337c4f2020a14f105ad2443349056fc82eb809d39a02a02799b0f9963dfce90aa"
34 ]
35}