https://github.com/EasyCrypt/easycrypt
Revision 3acf93f8118364d520efe28b4c655ba8e807a62d authored by Benjamin Gregoire on 10 December 2019, 14:35:50 UTC, committed by Benjamin Gregoire on 10 December 2019, 14:35:50 UTC
1 parent 0b1128e
Raw File
Tip revision: 3acf93f8118364d520efe28b4c655ba8e807a62d authored by Benjamin Gregoire on 10 December 2019, 14:35:50 UTC
fixing some examples
Tip revision: 3acf93f
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