https://github.com/EasyCrypt/easycrypt
Revision ce4d82719d0e5df43689ca15915d843f1e8ca9d9 authored by Antoine Séré on 20 April 2020, 15:04:39 UTC, committed by Antoine Séré on 20 April 2020, 15:04:39 UTC
1 parent acfd4ea
Raw File
Tip revision: ce4d82719d0e5df43689ca15915d843f1e8ca9d9 authored by Antoine Séré on 20 April 2020, 15:04:39 UTC
Added two useful lemmas to Quotient.ec
Tip revision: ce4d827
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