|
| 1 | +opam-version: "2.0" |
| 2 | +synopsis: |
| 3 | + "Sail is a language for describing the instruction semantics of processors" |
| 4 | +description: """ |
| 5 | +Sail is a language for describing the instruction-set |
| 6 | +architecture (ISA) semantics of processors. Sail aims to provide a |
| 7 | +engineer-friendly, vendor-pseudocode-like language for describing |
| 8 | +instruction semantics. It is essentially a first-order imperative |
| 9 | +language, but with lightweight dependent typing for numeric types and |
| 10 | +bitvector lengths, which are automatically checked using Z3. It has |
| 11 | +been used for several papers, available from |
| 12 | +http://www.cl.cam.ac.uk/~pes20/sail/. |
| 13 | +""" |
| 14 | +maintainer: ["Sail Devs < [email protected]>"] |
| 15 | +authors: [ |
| 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 | +] |
| 27 | +license: "BSD-2-Clause" |
| 28 | +homepage: "https://github.com/rems-project/sail" |
| 29 | +bug-reports: "https://github.com/rems-project/sail/issues" |
| 30 | +depends: [ |
| 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_sv_backend" {= version & post} |
| 38 | + "sail_lem_backend" {= version & post} |
| 39 | + "sail_coq_backend" {= version & post} |
| 40 | + "sail_lean_backend" {= version & post} |
| 41 | + "sail_latex_backend" {= version & post} |
| 42 | + "sail_doc_backend" {= version & post} |
| 43 | + "sail_output" {= version & post} |
| 44 | + "linenoise" {>= "1.1.0"} |
| 45 | + "odoc" {with-doc} |
| 46 | +] |
| 47 | +build: [ |
| 48 | + ["dune" "subst"] {dev} |
| 49 | + [ |
| 50 | + "dune" |
| 51 | + "build" |
| 52 | + "-p" |
| 53 | + name |
| 54 | + "-j" |
| 55 | + jobs |
| 56 | + "--promote-install-files=false" |
| 57 | + "@install" |
| 58 | + "@runtest" {with-test} |
| 59 | + "@doc" {with-doc} |
| 60 | + ] |
| 61 | + ["dune" "install" "-p" name "--create-install-files" name] |
| 62 | +] |
| 63 | +dev-repo: "git+https://github.com/rems-project/sail.git" |
| 64 | +substs: [ "src/bin/manifest.ml" ] |
| 65 | +url { |
| 66 | + src: |
| 67 | + "https://github.com/rems-project/sail/releases/download/0.19.1/sail-0.19.1.tbz" |
| 68 | + checksum: [ |
| 69 | + "sha256=5e99698b6367c018133c90aaed2ceff173de20db6e61c33e2b19594a1d482a32" |
| 70 | + "sha512=4de32379ae0a35a1e8ccb9ddd42147e5af88f595e18bde4c5ed635ccf511fffdcc203910732b818069e2c65e399223b79147a600f37aeb9df0f7779ba9ef323a" |
| 71 | + ] |
| 72 | +} |
| 73 | +x-commit-hash: "31cd0721bcc9845e40b79e69d40b45e4e284422b" |
0 commit comments