this repo has no description
1opam-version: "2.0"
2synopsis: "Scheme via camlp5"
3description:
4 "This a simple scheme implementation using pa_schemer from camlp5"
5maintainer: "drjdnielsen@gmail.com"
6authors: "Jason D. Nielsen"
7license: "MIT"
8homepage: "https://github.com/drjdn/p5scm"
9bug-reports: "https://github.com/drjdn/p5scm/issues"
10depends: [
11 "dune" {>= "2.8"}
12 "ocaml" {>= "4.12.0" & < "5.3.0"}
13 "menhir" {>= "20201214"}
14 "cppo" {>= "1.6.6"}
15 "camlp5" {>= "8.03.00"}
16 "sexp_pretty" {>= "v0.14.0"}
17 "ppx_sexp_conv" {>= "v0.14.0"}
18 "utop" {>= "2.7.0"}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/drjdn/p5scm.git"
36url {
37 src: "https://github.com/drjdn/p5scm/archive/refs/tags/0.4.0.tar.gz"
38 checksum: [
39 "md5=eb4ee666fd862f7c8057cca4a73daf44"
40 "sha512=d28ee892b8fc3241c42f531f9d372b1b007abbef128c3f3862fa5ad943a3eae1d655b34daac19940e1f9fad1ecfca1419a89c7507b6cbd40d9c0490c6aa6761e"
41 ]
42}