We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 760e7d1 commit 18a2351Copy full SHA for 18a2351
nixpkgs_review/nix.py
@@ -320,7 +320,8 @@ def write_shell_expression(
320
preferLocalBuild = true;
321
allowSubstitutes = false;
322
dontWrapQtApps = true;
323
- packages = if builtins.length paths > 50 then [ env ] else paths;
+ # with a separate buildEnv the impurities such as hooks and propagatedBuildInputs won't be added to the shell
324
+ packages = [ env ];
325
}
326
"""
327
)
0 commit comments