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 "dune" {>= "2.9"} 12 "odoc" {with-doc} 13 "menhir" {>= "20180523"} 14 "ounit2" {with-test} 15 "bisect_ppx" {with-test & >= "2.5.0"} 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/3.0.0.tar.gz" 34 checksum: [ 35 "md5=0314c1c1b0922e47ec33b040b16b87bb" 36 "sha512=357ded7e85079a24a45daf390bcead56ff5d4e62676759973452abb648cddcb684f3dfa48317c0a4233520981c81a0542b58250aeef84871c0381cb7514dc35b" 37 ] 38}