https://github.com/EasyCrypt/easycrypt
Raw File
Tip revision: c22ac631548c8ca619c858a2eb151b5bca14d6f5 authored by Benjamin Gregoire on 10 February 2020, 09:30:24 UTC
more lemmas on div
Tip revision: c22ac63
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