this repo has no description
1opam-version: "2.0" 2synopsis: "Low-level language for tax code specification" 3description: """ 4The Catala language is designed to be a low-level target for 5higher-level specification languages for fiscal legislation. 6""" 7maintainer: ["contact@catala-lang.org"] 8authors: ["Denis Merigoux"] 9license: "Apache-2.0" 10homepage: "https://github.com/CatalaLang/catala" 11bug-reports: "https://github.com/CatalaLang/catala/issues" 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "ANSITerminal" {>= "0.8.2"} 15 "sedlex" {>= "2.1"} 16 "menhir" {>= "20200211" & < "20211215"} 17 "menhirLib" {>= "20200211"} 18 "unionFind" {>= "20200320"} 19 "bindlib" {= "5.0.1"} 20 "dune-build-info" {>= "2.0.1"} 21 "cmdliner" {>= "1.0.4" & < "1.1.0"} 22 "re" {>= "1.9.0"} 23 "zarith" {>= "1.10"} 24 "dune" {>= "2.2"} 25 "ocamlgraph" {>= "1.8.8"} 26 "odate" {>= "0.6"} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/CatalaLang/catala.git" 43url { 44 src: "https://github.com/CatalaLang/catala/archive/0.2.0.tar.gz" 45 checksum: [ 46 "md5=4c6f725ef4d21c5ff91f60d74b454ef7" 47 "sha512=98806e03daa6f33740b80a0f78a37320fb70ebea8cb927ea8fed022673459189c32e2389ccba0fa25d93f754b0fa0128a5ee28e1bb9abefa330deb4be8cc7d95" 48 ] 49}