https://github.com/EasyCrypt/easycrypt
Revision e5e946c4b16891245197acbae34fc3512464f34e authored by Adrien Koutsos on 25 August 2023, 13:50:05 UTC, committed by Adrien Koutsos on 25 August 2023, 13:50:05 UTC
1 parent 237f245
Raw File
Tip revision: e5e946c4b16891245197acbae34fc3512464f34e authored by Adrien Koutsos on 25 August 2023, 13:50:05 UTC
[cost v2] minor
Tip revision: e5e946c
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