https://github.com/EasyCrypt/easycrypt
Revision 82fd774816148b7160897f917f6c74e55f12fd6b authored by François Dupressoir on 20 May 2021, 09:26:40 UTC, committed by François Dupressoir on 20 May 2021, 09:26:40 UTC
Shift specific map-merging strategies from SplitRO to SmtMap.
The `pair` strategy now does a product (with None as zero).
1 parent edd02d0
Raw File
Tip revision: 82fd774816148b7160897f917f6c74e55f12fd6b authored by François Dupressoir on 20 May 2021, 09:26:40 UTC
Shift some results to SmtMap
Tip revision: 82fd774
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