this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Interpreter for SiFun (Simple Functional) Language with three different type systems (supports Higher Rank Polymorphism)"
4maintainer: ["Krzysztof Druciarek <kkd26@cam.ac.uk>"]
5authors: ["Krzysztof Druciarek <kkd26@cam.ac.uk>"]
6license: "gpl-3.0"
7homepage: "https://github.com/kkd26/SiFun"
8bug-reports: "https://github.com/kkd26/SiFun/issues"
9depends: [
10 "ocaml" {>= "4.06"}
11 "core" {>= "v0.11.3" & < "v0.15"}
12 "dune" {>= "2.9"}
13 "odoc" {with-doc}
14 "menhir" {>= "20180523"}
15 "ounit2" {with-test}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/kkd26/SiFun"
32url {
33 src: "https://github.com/kkd26/SiFun/archive/HMV.tar.gz"
34 checksum: [
35 "md5=d3b1e91abb9b5a2b145d1d0512a8edc8"
36 "sha512=b4a4b4a38867778e04192d202fb5f9321a16f9253701a36e4a1c380893c5bbb80bf87b12913f4d9c65154cbffe9fc715b613dbb740630a0f893249e5a2cdee82"
37 ]
38}