-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathfstar.opam
42 lines (42 loc) · 1.22 KB
/
fstar.opam
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
39
40
41
42
opam-version: "2.0"
version: "2025.02.17~dev"
maintainer: "[email protected]"
authors: "Nik Swamy <[email protected]>,Jonathan Protzenko <[email protected]>,Tahina Ramananandro <[email protected]>"
homepage: "http://fstar-lang.org"
license: "Apache-2.0"
depends: [
"ocaml" {>= "4.14.0"}
"batteries"
"zarith" {>= "1.14"}
"stdint"
"yojson"
"dune" {>= "3.8.0"}
"memtrace" {>= "0.2.3"}
"menhirLib"
"menhir" {build & >= "20230415"}
"mtime" {>= "2.1.0"}
"pprint"
"sedlex"
"ppxlib" {>= "0.27.0"}
"process"
"ppx_deriving" {build}
"ppx_deriving_yojson" {build}
]
depexts: ["coreutils"] {os = "macos" & os-distribution = "homebrew"}
build: [
[make "-j" jobs "ADMIT=1"]
]
install: [
[make "PREFIX=%{prefix}%" "install"]
]
post-messages: [
"""
F* requires specific versions of Z3 to work correctly, and will refuse to run
if the version string does not match. You should have z3-4.8.5 and z3-4.13.3
in your $PATH. For details, see
https://github.com/FStarLang/FStar/blob/master/INSTALL.md#runtime-dependency-particular-version-of-z3.
""" {success}
]
dev-repo: "git+https://github.com/FStarLang/FStar"
bug-reports: "https://github.com/FStarLang/FStar/issues"
synopsis: "Verification system for effectful programs"