https://github.com/EasyCrypt/easycrypt
Revision c410d3cb25fde0579cc3281dcc8bfb1c2b02c1f8 authored by Benjamin Gregoire on 21 September 2023, 09:04:50 UTC, committed by bgregoir on 21 September 2023, 09:32:15 UTC
1 parent c60092d
Raw File
Tip revision: c410d3cb25fde0579cc3281dcc8bfb1c2b02c1f8 authored by Benjamin Gregoire on 21 September 2023, 09:04:50 UTC
remove hyp in normrV
Tip revision: c410d3c
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 python3Packages; [
    pyyaml
  ]);
}
back to top