https://github.com/EasyCrypt/easycrypt
Revision ff7b69855d019c5a1361aeb40060d6b8784d22f1 authored by AVANZINI Martin on 26 October 2023, 17:56:30 UTC, committed by Pierre-Yves Strub on 08 November 2023, 11:03:26 UTC
1 parent 99ec9f4
Raw File
Tip revision: ff7b69855d019c5a1361aeb40060d6b8784d22f1 authored by AVANZINI Martin on 26 October 2023, 17:56:30 UTC
added adversary and qselect examples
Tip revision: ff7b698
shell.nix
{ withProvers ? true, devDeps ? [] }:

with import <nixpkgs> {};

let ec = callPackage ./default.nix { inherit withProvers devDeps; };
in

pkgs.mkShell {
  buildInputs = ec.buildInputs
  ++ ec.propagatedBuildInputs
  ++ (with ocamlPackages; [
    merlin
  ])
  ++ (with python3Packages; [
    pyyaml
  ]);
}
back to top