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 "gen" {>= "0.2.3"} 17 "menhir" {>= "20200211"} 18 "menhirLib" {>= "20200211"} 19 "unionFind" {>= "20200320"} 20 "bindlib" {= "5.0.1"} 21 "cmdliner" {>= "1.0.4" & < "1.1.0"} 22 "re" {>= "1.9.0"} 23 "zarith" {>= "1.10"} 24 "zarith_stubs_js" {>= "0.14.0"} 25 "dune" {>= "2.2"} 26 "ocamlgraph" {>= "1.8.8"} 27 "calendar" {>= "2.04"} 28 "visitors" {>= "20200210"} 29 "benchmark" {>= "1.6"} 30 "js_of_ocaml-ppx" {>= "3.8.0"} 31 "camomile" {>= "1.0.2" & < "2.0.0"} 32] 33build: [ 34 ["dune" "subst"] {dev} 35 [ 36 "dune" 37 "build" 38 "-p" 39 name 40 "-j" 41 jobs 42 "@install" 43 "@runtest" {with-test} 44 "@doc" {with-doc} 45 ] 46] 47dev-repo: "git+https://github.com/CatalaLang/catala.git" 48url { 49 src: "https://github.com/CatalaLang/catala/archive/0.3.0.tar.gz" 50 checksum: [ 51 "md5=4a2c5495f30d8fc2e3bf977df6e602f9" 52 "sha512=8dcc404b6068b9dbd76982ade60d8fba1950fdd0a8a626db17429120483367dce1f51997e96d7b8ee5308f305c3bcbb897ef85336f25e9ef3681f4cb9237f56a" 53 ] 54}