-
Notifications
You must be signed in to change notification settings - Fork 11
/
coq-freespec-ffi.opam
45 lines (38 loc) · 1.09 KB
/
coq-freespec-ffi.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
43
44
45
opam-version: "2.0"
maintainer: "Thomas Letan <[email protected]>"
version: "dev"
homepage: "https://github.com/lthms/FreeSpec"
dev-repo: "git+https://github.com/lthms/FreeSpec.git"
bug-reports: "https://github.com/lthms/FreeSpec.git/issues"
doc: "https://lthms.github.io/FreeSpec"
license: "MPL-2.0"
synopsis: "A framework for implementing and certifying impure computations in Coq"
description: """
FreeSpec is a framework for the Coq proof assistant which allows to
implement and specify impure computations. It can be used with coqffi
to write certified software.
"""
build: [
["patch" "-p1" "-i" "patches/opam-builds.patch"]
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml"
"dune" {>= "2.5"}
"coq" {>= "8.12" & < "8.14~" | = "dev"}
"coq-freespec-core" {= "dev"}
"coq-coqffi" {= "dev" | >= "1.0~"}
"coq-simple-io" {>= "1.0" & < "2.0" | = "dev"}
]
tags: [
"keyword:foreign function interface"
"category:Miscellaneous/Coq Extensions"
"logpath:FreeSpec.FFI"
]
authors: [
"Thomas Letan"
"Yann Régis-Gianas"
]
url {
src: "git+https://github.com/lthms/FreeSpec.git#master"
}