https://github.com/EasyCrypt/easycrypt
Revision 6965ea6c74dc9c5674d7548c80d01b7eaf6b56fa authored by Pierre-Yves Strub on 10 June 2020, 07:46:26 UTC, committed by Pierre-Yves Strub on 10 June 2020, 07:46:26 UTC
1 parent 2064617
Raw File
Tip revision: 6965ea6c74dc9c5674d7548c80d01b7eaf6b56fa authored by Pierre-Yves Strub on 10 June 2020, 07:46:26 UTC
binomial law + basic lemmas (full / support)
Tip revision: 6965ea6
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