# Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 4 Virtual package relying on a GMP lib system installation coq 8.13.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.13.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.13.1 Official release 4.13.1 ocaml-config 2 OCaml Switch Configuration ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled ocamlfind 1.9.6 A library manager for OCaml zarith 1.13 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: "2.0" authors: [ "Massachusetts Institute of Technology" "Kevix" "SiFive" ] maintainer: "Jason Gross <jgross@mit.edu>" homepage: "https://github.com/mit-plv/bedrock2" bug-reports: "https://github.com/mit-plv/bedrock2/issues" license: "MIT" build: [ # No reason to build compiler_ex since there's no install_compiler_ex target; the install_compiler target installs only compiler_noex [make "-j%{jobs}%" "EXTERNAL_DEPENDENCIES=1" "compiler_noex"] ] install: [make "EXTERNAL_DEPENDENCIES=1" "install_compiler"] depends: [ "conf-findutils" {build} "coq" {>= "8.15~"} "coq-bedrock2" {= "0.0.5"} "coq-riscv" {= "0.0.4"} "zarith" {>= "1.11"} ] dev-repo: "git+https://github.com/mit-plv/bedrock2.git" synopsis: "A work-in-progress language and compiler for verified low-level programming (compiler part)" description: """ bedrock2 is a low-level systems programming language. This language is equipped with a simple program logic for proving correctness of the programs. This package includes a verified compiler targeting RISC-V from this language. The project has similar goals as bedrock, but uses a different design. No code is shared between bedrock and bedrock2. """ tags: ["logpath:bedrock2"] url { src: "https://github.com/mit-plv/bedrock2/archive/refs/tags/v0.0.5.tar.gz" checksum: "sha512=a4101b4a526dd691fcce8e5d86c16001736c465d4bccbf2e913b4f17b4ee24fe4d51731955480d4b69e04823dda860388994eff2ccc087d046ef15e4ef429b72" }
true
Dry install with the current Coq version:
opam install -y --show-action coq-bedrock2-compiler.0.0.5 coq.8.13.1
[NOTE] Package coq is already installed (current version is 8.13.1). The following dependencies couldn't be met: - coq-bedrock2-compiler -> coq-riscv >= 0.0.4 -> coq >= 8.15~ Your request can't be satisfied: - No available version of coq satisfies the constraints No solution found, exiting
Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:
opam remove -y coq; opam install -y --show-action --unlock-base coq-bedrock2-compiler.0.0.5
true
true
No files were installed.
true