https://github.com/EasyCrypt/easycrypt
Revision 58aaed42d3666b7c1bfcd2812960ab5f3ce8e53e authored by AntoineSere on 20 April 2020, 17:02:04 UTC, committed by GitHub on 20 April 2020, 17:02:04 UTC
Added two useful lemmas to Quotient.ec
2 parent s acfd4ea + ce4d827
Raw File
Tip revision: 58aaed42d3666b7c1bfcd2812960ab5f3ce8e53e authored by AntoineSere on 20 April 2020, 17:02:04 UTC
Merge pull request #42 from AntoineSere/eqvquo
Tip revision: 58aaed4
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])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top