Closed markshust closed 2 days ago
The default devenv.nix configuration in Symfony Flex fails to build because it uses Node.js 16.x, which has reached EOL and been removed from Nixpkgs.
devenv.nix
Steps to Reproduce:
devenv up
Error:
error: nodejs_16 has been removed as it is EOL.
Fix: Update devenv.nix to use a supported Node.js version:
languages.javascript = { enable = lib.mkDefault true; - package = lib.mkDefault pkgs.nodejs-16_x; + package = lib.mkDefault pkgs.nodejs_20; };
Why This Fixes It:
Testing:
This appears to rather be a problem with recipe used in Shopware Flex, not with this project. Closing this out as a non-issue.
The default
devenv.nix
configuration in Symfony Flex fails to build because it uses Node.js 16.x, which has reached EOL and been removed from Nixpkgs.Steps to Reproduce:
devenv up
Error:
Fix: Update
devenv.nix
to use a supported Node.js version:Why This Fixes It:
Testing:
devenv up