this repo has no description
1opam-version: "2.0"
2maintainer: "sudo-woodo3@protonmail.com"
3authors: ["Alessandro Cheli"]
4homepage: "https://github.com/0x0f0f0f/gobba"
5bug-reports: "https://github.com/0x0f0f0f/gobba/issues"
6dev-repo: "git+https://github.com/0x0f0f0f/gobba.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/gobba"
11
12build: [
13 ["dune" "build" "-p" name "-j" jobs]
14 ["sh" "-c" "GOBBA_EXAMPLES=$(realpath ./examples/) dune runtest -p %{name}% -j %{jobs}%"] {with-test & arch != "x86_32" & arch != "arm32"}
15]
16
17depends: [
18 "dune" {>= "2.0"}
19 "ocaml" {>= "4.05.0"}
20 "ANSITerminal"
21 "ocamline" {>= "1.0" & < "1.2"}
22 "menhir" {>= "20180528"}
23 "ppx_deriving"
24 "cmdliner" {>= "0.9.8"}
25 "alcotest" {with-test & >= "0.8.5"}
26 "bisect_ppx" {>= "1.4.1" & < "2.6.0"}
27]
28url {
29 src:
30 "https://github.com/0x0f0f0f/gobba/releases/download/0.4.1/gobba-0.4.1.tbz"
31 checksum: [
32 "sha256=2e4ba6a37a298dad27116c0c84c957da4f761a4b6c7ad63c1cff7efd1abf1a64"
33 "sha512=58d4967db39b881ce6fd6a5c3a8062c6d1f58b43ce0461c9808e97d1781e1bc3a8ff6adec3183c81fa8d41a3c298ccc15406e5038af34e3b67404fd440eeeb22"
34 ]
35}