nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

mealie: install frontend dependencies with `--ignore-engines` until upstream supports Node.js 20+

It seems to build/run just fine on the latest version

+4 -3
+4 -3
pkgs/by-name/me/mealie/mealie-frontend.nix
··· 29 29 export HOME=$(mktemp -d) 30 30 yarn config --offline set yarn-offline-mirror "$yarnOfflineCache" 31 31 fixup-yarn-lock yarn.lock 32 - yarn install --frozen-lockfile --offline --no-progress --non-interactive 32 + # TODO: Remove --ignore-engines once upstream supports nodejs_20+ 33 + # https://github.com/mealie-recipes/mealie/issues/5400 34 + # https://github.com/mealie-recipes/mealie/pull/5184 35 + yarn install --frozen-lockfile --offline --no-progress --non-interactive --ignore-engines 33 36 patchShebangs node_modules/ 34 37 35 38 runHook postConfigure ··· 58 55 description = "Frontend for Mealie"; 59 56 license = licenses.agpl3Only; 60 57 maintainers = with maintainers; [ litchipi ]; 61 - # Depends on nodejs_18 that has been removed. 62 - broken = true; 63 58 }; 64 59 }