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_sv_backend" {= version & post} 38 "sail_lem_backend" {= version & post} 39 "sail_coq_backend" {= version & post} 40 "sail_latex_backend" {= version & post} 41 "sail_doc_backend" {= version & post} 42 "sail_output" {= version & post} 43 "linenoise" {>= "1.1.0"} 44 "odoc" {with-doc} 45] 46build: [ 47 ["dune" "subst"] {dev} 48 [ 49 "dune" 50 "build" 51 "-p" 52 name 53 "-j" 54 jobs 55 "--promote-install-files=false" 56 "@install" 57 "@runtest" {with-test} 58 "@doc" {with-doc} 59 ] 60 ["dune" "install" "-p" name "--create-install-files" name] 61] 62dev-repo: "git+https://github.com/rems-project/sail.git" 63substs: [ "src/bin/manifest.ml" ] 64url { 65 src: 66 "https://github.com/rems-project/sail/releases/download/0.17.1/sail-0.17.1.tbz" 67 checksum: [ 68 "sha256=11463fe0bb4a494dab408598d37e7a065ffab348753e3134e964edb56da896a2" 69 "sha512=3ea18086992e07414d474bf3b604b6927d7dee313fb475e9bb1fdf4f7c0e10f7d4b0143c8e6670f90db335d3a8fcd507f777a9e3a98051be343e0d101fd8b9a4" 70 ] 71} 72x-commit-hash: "8217b279ef55b3c32e792b9683a75f2ce0cfad29"