https://github.com/EasyCrypt/easycrypt
Revision ce9380db2fcee68ae3b4a24970561a25fb105d4f authored by Benjamin Gregoire on 14 October 2019, 06:41:25 UTC, committed by Pierre-Yves Strub on 14 October 2019, 06:42:35 UTC
1 parent 3b9667b
Raw File
Tip revision: ce9380db2fcee68ae3b4a24970561a25fb105d4f authored by Benjamin Gregoire on 14 October 2019, 06:41:25 UTC
Add transitivity * (transivity with generation of VC)
Tip revision: ce9380d
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