Revision 15f07518a16d758df59b59fc0cb532cf1d265fcf authored by Pierre-Yves Strub on 01 December 2023, 15:12:27 UTC, committed by Pierre-Yves Strub on 01 December 2023, 16:15:50 UTC
Syntax is name@version. The selected prover is the prover with name
`name` and with the lowest version that is greater (or equal) than
`version`.

For example, if Z3 4.8.0, Z3 4.8.2 & Z3 4.12.2 are installed, Z3@4.8
selects Z3 4.8.2.
1 parent 27edb8a
Raw File
shell.nix
{ withProvers ? true, devDeps ? [] }:

with import <nixpkgs> {};

let ec = callPackage ./default.nix { inherit withProvers devDeps; };
in

pkgs.mkShell {
  buildInputs = ec.buildInputs
  ++ ec.propagatedBuildInputs
  ++ (with ocamlPackages; [
    merlin
  ])
  ++ (with python3Packages; [
    pyyaml
  ]);
}
back to top