From a14f74175c565f0e8fc47ae84220930a92af3cc5 Mon Sep 17 00:00:00 2001 From: Tim Emiola Date: Wed, 15 May 2024 07:33:13 +0900 Subject: [PATCH] Don't build project dep haddocks --- shell.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell.nix b/shell.nix index 7dcdc1e..9788651 100644 --- a/shell.nix +++ b/shell.nix @@ -2,9 +2,9 @@ let project = import ./default.nix {}; in project.shellFor { - # Builds a Hoogle documentation index of all dependencies, - # and provides a "hoogle" command to search the index. - withHoogle = true; + # Don't build haddock to optimize build time + withHaddock = false; + withHoogle = false; # Some common tools can be added with the `tools` argument tools = {