https://github.com/EasyCrypt/easycrypt
Revision 1ec24f8006b41ce4f2072db33589d6c660f8060f authored by Benjamin Gregoire on 18 December 2019, 07:21:50 UTC, committed by Benjamin Gregoire on 18 December 2019, 07:48:19 UTC
Be sure that tactic crush (|>, />) does not transform the goal
into umprovable one.
1 parent eb9d7e3
Raw File
Tip revision: 1ec24f8006b41ce4f2072db33589d6c660f8060f authored by Benjamin Gregoire on 18 December 2019, 07:21:50 UTC
Improve />.
Tip revision: 1ec24f8
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
}
back to top