https://github.com/EasyCrypt/easycrypt
Revision e95277e866c97766cd9b3fe9179e8249b5bfb44b authored by Pierre-Yves Strub on 05 September 2023, 13:35:12 UTC, committed by Pierre-Yves Strub on 05 September 2023, 13:35:12 UTC
1 parent 46d6948
Raw File
Tip revision: e95277e866c97766cd9b3fe9179e8249b5bfb44b authored by Pierre-Yves Strub on 05 September 2023, 13:35:12 UTC
multivariate polynomials type
Tip revision: e95277e
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