https://github.com/EasyCrypt/easycrypt
Revision cd341ca1be9972e8d531d6caa84f06e752ceb8c3 authored by Pierre-Yves Strub on 18 December 2019, 09:41:43 UTC, committed by Pierre-Yves Strub on 18 December 2019, 09:52:45 UTC
1 parent 050cada
Raw File
Tip revision: cd341ca1be9972e8d531d6caa84f06e752ceb8c3 authored by Pierre-Yves Strub on 18 December 2019, 09:41:43 UTC
[done] solves context of the form [false |- G]
Tip revision: cd341ca
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