https://github.com/EasyCrypt/easycrypt
Revision a0a0c9b4b4f580c67360cbdb1d45479bdb10427d authored by Pierre-Yves Strub on 04 April 2021, 07:17:16 UTC, committed by Pierre-Yves Strub on 04 April 2021, 07:17:16 UTC
1 parent 20a6183
Raw File
Tip revision: a0a0c9b4b4f580c67360cbdb1d45479bdb10427d authored by Pierre-Yves Strub on 04 April 2021, 07:17:16 UTC
Upgrade versions of supported provers
Tip revision: a0a0c9b
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