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_output" {= version & post} 41 "linenoise" {>= "1.1.0"} 42 "odoc" {with-doc} 43] 44build: [ 45 ["dune" "subst"] {dev} 46 [ 47 "dune" 48 "build" 49 "-p" 50 name 51 "-j" 52 jobs 53 "--promote-install-files=false" 54 "@install" 55 "@runtest" {with-test} 56 "@doc" {with-doc} 57 ] 58 ["dune" "install" "-p" name "--create-install-files" name] 59] 60dev-repo: "git+https://github.com/rems-project/sail.git" 61substs: [ "src/bin/manifest.ml" ] 62url { 63 src: 64 "https://github.com/rems-project/sail/releases/download/0.15/sail-0.15.tbz" 65 checksum: [ 66 "sha256=6849fb16af6a3a1f70a9202ceffeb91f0d5afe0dc403d7a29b42b065dc3510fb" 67 "sha512=64219a4824c428798937f1f2b3d4e8c7b2ff0cb3a835e82a7e98b6c337d16f7496d0f94cb7c65f2c74089a53598e6df04624485f1db0c1ca11ba8fc9dea281d6" 68 ] 69} 70x-commit-hash: "10b7ffc4628cf6e3b6aae0657b1a998b945b8085"