summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSon Ho2024-04-11 20:31:16 +0200
committerSon Ho2024-04-11 20:31:16 +0200
commitb6421bc01df278f625a8c95b4ea36ad2e4355718 (patch)
tree6246ef2b038560e3deae41e4fa700f14390cd14f /flake.nix
parent44065f447dc3a2f4b1441b97b9687d1c1b85afbf (diff)
parent2f8aa9b47acb5c98aed91c29b04f71099452e781 (diff)
Merge branch 'son/clean' into checked-ops
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 72c4fd99..36910f45 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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
];