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/1.0.1.tar.gz" 34 checksum: [ 35 "md5=ff95720e5e7b79a6a9b0a2f70e5692d1" 36 "sha512=c0b9148caa0e921486d2d60d5510f3c363c2a471cdc0bcf30c9e13bdbea5ec279ed30c2433325ba2553e8de9e713820ff7e33f0852df14f131784d1906a67f23" 37 ] 38}