https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: bad3a6373b77fe080e1c3cee422142a108d27f57 authored by Pierre-Yves Strub on 11 December 2023, 09:29:21 UTC
Internal change: primitive notion of forall-bindings in proof terms
Tip revision: bad3a63
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