https://github.com/EasyCrypt/easycrypt
Revision f71bd6c2fad10bae222c30f3af59a7b7d7c1aabf authored by Pierre-Yves Strub on 08 June 2020, 17:14:32 UTC, committed by Pierre-Yves Strub on 08 June 2020, 17:14:32 UTC
Co-Authored-By: Benjamin Gregoire <benjamin.gregoire@inria.fr>
Co-Authored-By: Pierre-Yves Strub <pierre-yves@strub.nu>
1 parent 00ffc11
Raw File
Tip revision: f71bd6c2fad10bae222c30f3af59a7b7d7c1aabf authored by Pierre-Yves Strub on 08 June 2020, 17:14:32 UTC
Some extra lemmas on Ring.expr
Tip revision: f71bd6c
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