https://github.com/EasyCrypt/easycrypt
Revision e9598beab915c8a5c587ffae3e8f807aa601136e authored by Asif Mallik on 10 October 2019, 06:50:06 UTC, committed by Pierre-Yves Strub on 10 October 2019, 06:50:06 UTC
1 parent 8eb2491
Raw File
Tip revision: e9598beab915c8a5c587ffae3e8f807aa601136e authored by Asif Mallik on 10 October 2019, 06:50:06 UTC
Add lemmas to filter noncontributing list items in bigops (#29)
Tip revision: e9598be
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