https://github.com/EasyCrypt/easycrypt
Revision aae9601c9cb5165ea20483bab12852fb969dfff7 authored by Francois Dupressoir on 20 May 2021, 16:48:40 UTC, committed by GitHub on 20 May 2021, 16:48:40 UTC
Soft-merge chachapoly proof and its stdlib changes

We'll want to consider shifting the generic arguments on SKE (EUF-CMA + IND-CPA ⇒ IND-CCA) into standard libraries.
2 parent s ba45bb5 + f30e424
Raw File
Tip revision: aae9601c9cb5165ea20483bab12852fb969dfff7 authored by Francois Dupressoir on 20 May 2021, 16:48:40 UTC
Merge pull request #67 from EasyCrypt/merge-chachapoly
Tip revision: aae9601
default.nix
with import <nixpkgs> {};

let why314 = why3.overrideAttrs (x:
   { name = "why3.14";
     src = fetchurl {
       url = "https://gforge.inria.fr/frs/download.php/file/38425/why3-1.4.0.tar.gz";
       sha256 = "0lw0cpx347zz9vvwqibmbxgs80fsd16scgk3isscvwxnajpc3rv8";
      };
     postPatch = "";
   }); in

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why314 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top