-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsail.opam.locked
172 lines (172 loc) · 4.56 KB
/
sail.opam.locked
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
opam-version: "2.0"
name: "sail"
version: "0.18"
synopsis:
"Sail is a language for describing the instruction semantics of processors"
description: """\
Sail is a language for describing the instruction-set
architecture (ISA) semantics of processors. Sail aims to provide a
engineer-friendly, vendor-pseudocode-like language for describing
instruction semantics. It is essentially a first-order imperative
language, but with lightweight dependent typing for numeric types and
bitvector lengths, which are automatically checked using Z3. It has
been used for several papers, available from
http://www.cl.cam.ac.uk/~pes20/sail/."""
maintainer: "Sail Devs <[email protected]>"
authors: [
"Alasdair Armstrong"
"Thomas Bauereiss"
"Brian Campbell"
"Shaked Flur"
"Jonathan French"
"Kathy Gray"
"Robert Norton"
"Christopher Pulte"
"Peter Sewell"
"Mark Wassell"
]
license: "BSD-2-Clause"
homepage: "https://github.com/rems-project/sail"
bug-reports: "https://github.com/rems-project/sail/issues"
depends: [
"astring" {= "0.8.5" & with-doc}
"base-bigarray" {= "base"}
"base-bytes" {= "base"}
"base-domains" {= "base"}
"base-nnp" {= "base"}
"base-threads" {= "base"}
"base-unix" {= "base"}
"base64" {= "3.5.1"}
"bisect_ppx" {= "2.8.3"}
"camlp-streams" {= "5.0.1" & with-doc}
"cmdliner" {= "1.3.0"}
"conf-findutils" {= "1"}
"conf-gmp" {= "4"}
"conf-pkg-config" {= "3"}
"conf-zlib" {= "1"}
"cppo" {= "1.7.0" & with-doc}
"crunch" {= "3.3.1" & with-doc}
"csexp" {= "1.5.2"}
"dune" {= "3.16.0"}
"dune-private-libs" {= "3.16.0"}
"dune-site" {= "3.16.0"}
"dyn" {= "3.16.0"}
"fmt" {= "0.9.0" & with-doc}
"fpath" {= "0.7.3" & with-doc}
"host-arch-x86_64" {= "1"}
"host-system-other" {= "1"}
"lem" {= "2022-12-10"}
"libsail" {= "0.18"}
"linenoise" {= "1.5.1"}
"linksem" {= "0.8"}
"menhir" {= "20240715"}
"menhirCST" {= "20240715"}
"menhirLib" {= "20240715"}
"menhirSdk" {= "20240715"}
"num" {= "1.5-1"}
"ocaml" {= "5.1.0"}
"ocaml-base-compiler" {= "5.1.0"}
"ocaml-compiler-libs" {= "v0.12.4"}
"ocaml-config" {= "3"}
"ocaml-options-vanilla" {= "1"}
"ocamlbuild" {= "0.15.0"}
"ocamlfind" {= "1.9.6"}
"ocamlgraph" {= "2.1.0"}
"odoc" {= "2.4.3" & with-doc}
"odoc-parser" {= "2.4.3" & with-doc}
"omd" {= "1.3.2"}
"ordering" {= "3.16.0"}
"ott" {= "0.33"}
"pp" {= "1.2.0"}
"pprint" {= "20230830"}
"ppx_derivers" {= "1.2.1"}
"ppxlib" {= "0.33.0"}
"ptime" {= "1.2.0" & with-doc}
"re" {= "1.12.0" & with-doc}
"result" {= "1.5" & with-doc}
"sail_c_backend" {= "0.18"}
"sail_coq_backend" {= "0.18"}
"sail_doc_backend" {= "0.18"}
"sail_latex_backend" {= "0.18"}
"sail_lean_backend" {= "0.18"}
"sail_lem_backend" {= "0.18"}
"sail_manifest" {= "0.18"}
"sail_ocaml_backend" {= "0.18"}
"sail_output" {= "0.18"}
"sail_smt_backend" {= "0.18"}
"sail_sv_backend" {= "0.18"}
"seq" {= "base"}
"sexplib0" {= "v0.17.0"}
"stdlib-shims" {= "0.3.0"}
"stdune" {= "3.16.0"}
"topkg" {= "1.0.7" & with-doc}
"tyxml" {= "4.6.0" & with-doc}
"uutf" {= "1.0.3" & with-doc}
"yojson" {= "2.2.2"}
"zarith" {= "1.14"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
substs: "src/bin/manifest.ml"
dev-repo: "git+https://github.com/rems-project/sail.git"
pin-depends: [
["libsail.0.18" "git+ssh://[email protected]/rems-project/sail.git#sail2"]
[
"sail_c_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_coq_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_doc_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_latex_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_lean_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_lem_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_manifest.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_ocaml_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
["sail_output.0.18" "git+ssh://[email protected]/rems-project/sail.git#sail2"]
[
"sail_smt_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
[
"sail_sv_backend.0.18"
"git+ssh://[email protected]/rems-project/sail.git#sail2"
]
]
url {
src: "git+file:///home/frederic/repos/sail#sail2"
}