nodePackages: remove __attrsFailEvaluation in all-packages

The test (`nix-build pkgs/test/release/default.nix`) continues to pass without this preventative measure.
This commit is contained in:
Philip Taron
2024-07-01 10:44:08 -07:00
parent 00d80d1381
commit 0812283be9
+2 -2
View File
@@ -9976,9 +9976,9 @@ with pkgs;
importNpmLock = callPackages ../build-support/node/import-npm-lock { };
nodePackages_latest = dontRecurseIntoAttrs nodejs_latest.pkgs // { __attrsFailEvaluation = true; };
nodePackages_latest = dontRecurseIntoAttrs nodejs_latest.pkgs;
nodePackages = dontRecurseIntoAttrs nodejs.pkgs // { __attrsFailEvaluation = true; };
nodePackages = dontRecurseIntoAttrs nodejs.pkgs;
node2nix = nodePackages.node2nix;