https://github.com/EasyCrypt/easycrypt
Revision c9641e4ef0c831b1d05c074dd7283fcccfe49448 authored by Pierre-Yves Strub on 10 June 2020, 09:53:25 UTC, committed by Pierre-Yves Strub on 10 June 2020, 09:53:35 UTC
This reverts commit f693233ec9a7b33ba350d7b17e1d223f33d7fb56.
1 parent bacb90b
Raw File
Tip revision: c9641e4ef0c831b1d05c074dd7283fcccfe49448 authored by Pierre-Yves Strub on 10 June 2020, 09:53:25 UTC
Revert "Add user reductions for iteri"
Tip revision: c9641e4
default.nix
with import <nixpkgs> {};

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