diff options
author | Son HO | 2024-04-10 13:47:22 +0200 |
---|---|---|
committer | GitHub | 2024-04-10 13:47:22 +0200 |
commit | dabbffde83e640aabc634d0a8917108decf9a5e7 (patch) | |
tree | e82cc4a857747b3ad7eff6f67c34f40071316ffb | |
parent | 05164f1ea87b7da14f60e6dbcc718a4f8d639ea1 (diff) | |
parent | 56633cc7325e3b6b0462f97f39bf3d535b58044d (diff) |
Merge pull request #115 from AeneasVerif/nix
Update flake.nix
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -153,7 +153,14 @@ default = aeneas; }; devShells.default = pkgs.mkShell { + # By default, tests run some sanity checks which are pretty slow. + # This disables these checks when developping locally. + OPTIONS = ""; + packages = [ + pkgs.ocamlPackages.ocaml + pkgs.ocamlPackages.ocamlformat + pkgs.ocamlPackages.menhir pkgs.ocamlPackages.odoc ]; |