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/2.0.0.tar.gz" 34 checksum: [ 35 "md5=917073b0bdef96867cbdddca76bf6053" 36 "sha512=2ea83202fb4335d9417b40fe870e0f8a815f1cadf83d70c1df0a9dff458312a40910415e74dd5454c9c1096392ac8addae532cdda53ac560dfeedae16af0acb1" 37 ] 38}