-
Notifications
You must be signed in to change notification settings - Fork 3
/
opam
27 lines (27 loc) · 921 Bytes
/
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
opam-version: "2.0"
name: "coq-imm"
maintainer: "Anton Podkopaev <[email protected]>"
authors: ["Anton Podkopaev <[email protected]>"
"Ori Lahav <[email protected]>"
"Viktor Vafeiadis <[email protected]>"]
homepage: "https://github.com/weakmemory/imm"
bug-reports: "https://github.com/weakmemory/imm/issues"
license: "MIT"
dev-repo: "https://github.com/weakmemory/imm.git"
build: [
[make "-j%{jobs}%" "build"]
]
install: [make "-f" "Makefile.coq" "install"]
remove: ["rm" "-rf" "%{lib}%/coq/user-contrib/imm"]
depends: [
"coq" { (>= "8.17.0") | (= "dev") }
"coq-promising-lib" { = "dev" }
"coq-hahn" { >= "1.1" | (= "dev") }
]
url {
git: "https://github.com/weakmemory/imm"
}
description: """
Coq definition of Intermediate Memory Model (IMM) and compilation correctness proofs stated in
``Bridging the Gap Between Programming Languages and Hardware Weak Memory Models'' paper.
"""