-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathcatala-proof.opam
More file actions
38 lines (38 loc) · 948 Bytes
/
catala-proof.opam
File metadata and controls
38 lines (38 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
opam-version: "2.0"
version: "1.1.0"
synopsis:
"Catala proof backend plugin"
description: """
This package provides a plugin for Catala that provides a Z3 encoding
of programs and can prove some properties on them
"""
maintainer: "contact@catala-lang.org"
authors: [
"Vincent Botbol"
"Nicolas Chataing"
"Alain Delaët-Tixeuil"
"Louis Gesbert"
"Aymeric Fromherz"
"Denis Merigoux"
"Raphaël Monat"
"Romain Primet"
"Emile Rolley"
]
license: "Apache-2.0"
tags: [ "catala" "javascript" ]
homepage: "https://github.com/CatalaLang/catala"
bug-reports: "https://github.com/CatalaLang/catala/issues"
depends: [
"catala" {= _:version}
"z3" {>= "4.8.11"}
]
build: [
"dune" "build" "-p" name "-j" jobs "@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
run-test: [
"dune" "exec" "--" "clerk" "test" "tests-extra/proof/"
]
build-env: [ CATALA_VERSION = "%{version}%" ]
dev-repo: "git+https://github.com/CatalaLang/catala"