diff options
author | Nadrieril | 2024-04-08 15:22:38 +0200 |
---|---|---|
committer | Nadrieril | 2024-04-08 15:23:21 +0200 |
commit | 56633cc7325e3b6b0462f97f39bf3d535b58044d (patch) | |
tree | e82cc4a857747b3ad7eff6f67c34f40071316ffb | |
parent | 05164f1ea87b7da14f60e6dbcc718a4f8d639ea1 (diff) |
Update flake.nix
It was missing some dependencies, and while we're at it we can disable
sanity checks in tests.
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 ]; |