https://github.com/EasyCrypt/easycrypt
Revision 350728be0758ddf750e64d0c4056a1ddb14d24ee authored by Benjamin Gregoire on 12 September 2019, 18:05:03 UTC, committed by Benjamin Gregoire on 12 September 2019, 20:35:16 UTC
1 parent 0f3ebba
Raw File
Tip revision: 350728be0758ddf750e64d0c4056a1ddb14d24ee authored by Benjamin Gregoire on 12 September 2019, 18:05:03 UTC
add hash colision resistant assumption
Tip revision: 350728b
default.nix
with import <nixpkgs> {};

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