https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: 3f4a0bd5596888cd8d28b97687d477942187aa5f authored by Pierre-Yves Strub on 11 June 2022, 06:10:21 UTC
In loop fusion/fission, add more constraints on the epilog
Tip revision: 3f4a0bd
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