https://github.com/EasyCrypt/easycrypt
Revision 2a5b4f61a789fe4302646f96845d5851af0f40bf authored by Pierre-Yves Strub on 26 March 2020, 07:42:17 UTC, committed by Pierre-Yves Strub on 26 March 2020, 07:42:17 UTC
1 parent 22799f1
Raw File
Tip revision: 2a5b4f61a789fe4302646f96845d5851af0f40bf authored by Pierre-Yves Strub on 26 March 2020, 07:42:17 UTC
Only accepts Alt-Ergo from version 2.3.1
Tip revision: 2a5b4f6
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild batteries menhir merlin zarith inifiles why3 yojson])
    ;
}
back to top