this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Sail is a language for describing the instruction semantics of processors"
4description: """
5Sail is a language for describing the instruction-set
6architecture (ISA) semantics of processors. Sail aims to provide a
7engineer-friendly, vendor-pseudocode-like language for describing
8instruction semantics. It is essentially a first-order imperative
9language, but with lightweight dependent typing for numeric types and
10bitvector lengths, which are automatically checked using Z3. It has
11been used for several papers, available from
12http://www.cl.cam.ac.uk/~pes20/sail/.
13"""
14maintainer: ["Sail Devs <cl-sail-dev@lists.cam.ac.uk>"]
15authors: [
16 "Alasdair Armstrong"
17 "Thomas Bauereiss"
18 "Brian Campbell"
19 "Shaked Flur"
20 "Jonathan French"
21 "Kathy Gray"
22 "Robert Norton"
23 "Christopher Pulte"
24 "Peter Sewell"
25 "Mark Wassell"
26]
27license: "BSD-2-Clause"
28homepage: "https://github.com/rems-project/sail"
29bug-reports: "https://github.com/rems-project/sail/issues"
30depends: [
31 "dune" {>= "3.0"}
32 "libsail" {= version}
33 "sail_manifest" {= version & build}
34 "sail_ocaml_backend" {= version & post}
35 "sail_c_backend" {= version & post}
36 "sail_smt_backend" {= version & post}
37 "sail_lem_backend" {= version & post}
38 "sail_coq_backend" {= version & post}
39 "sail_latex_backend" {= version & post}
40 "sail_doc_backend" {= version & post}
41 "sail_output" {= version & post}
42 "linenoise" {>= "1.1.0"}
43 "odoc" {with-doc}
44]
45build: [
46 ["dune" "subst"] {dev}
47 [
48 "dune"
49 "build"
50 "-p"
51 name
52 "-j"
53 jobs
54 "--promote-install-files=false"
55 "@install"
56 "@runtest" {with-test}
57 "@doc" {with-doc}
58 ]
59 ["dune" "install" "-p" name "--create-install-files" name]
60]
61dev-repo: "git+https://github.com/rems-project/sail.git"
62substs: [ "src/bin/manifest.ml" ]
63url {
64 src:
65 "https://github.com/rems-project/sail/releases/download/0.16/sail-0.16.tbz"
66 checksum: [
67 "sha256=aa38dbc4236fe8f63a3eede7d8a097adc2bb0992e2198a782ffe339c767e1008"
68 "sha512=1c7279cb6db7c01a32ceedce6328886966eee46c25e552a2e69d2f5d201bd98b68c9d409e7a9233a709a09f4895c68b06df985833f6f60c2f201880a74a9e82c"
69 ]
70}
71x-commit-hash: "393de35eba02f4b2a47e0d3798c90bf44a26da55"