https://github.com/EasyCrypt/easycrypt
Revision 8cb3e88e94b97a62065382445fa155233935f522 authored by Benjamin Gregoire on 13 November 2020, 11:33:30 UTC, committed by Benjamin Gregoire on 13 November 2020, 11:33:47 UTC
1 parent 4391b04
Raw File
Tip revision: 8cb3e88e94b97a62065382445fa155233935f522 authored by Benjamin Gregoire on 13 November 2020, 11:33:30 UTC
extend conseq rules: equivF => hoareF => hoareF and equivF => phoareF => phoareF
Tip revision: 8cb3e88
default.nix
with import <nixpkgs> {};

stdenv.mkDerivation {
  name = "easycrypt-1.0";
  src = ./.;
  buildInputs = [ ]
    ++ (with ocamlPackages; [ ocaml findlib ocamlbuild (batteries.overrideAttrs (o: { doCheck = false; })) menhir merlin zarith inifiles why3 yojson])
    ;
  installFlags = [ "PREFIX=$(out)" ];
}
back to top