From ff573fb2adc8fb9baa67308843c04e2f8f4d0db4 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 6 May 2023 17:55:02 +0100 Subject: [PATCH] tandoor-recipes: frontend: 'nodejs_16' -> 'nodejs' --- pkgs/applications/misc/tandoor-recipes/frontend.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/tandoor-recipes/frontend.nix b/pkgs/applications/misc/tandoor-recipes/frontend.nix index 2050d062d6a..98da59a1d29 100644 --- a/pkgs/applications/misc/tandoor-recipes/frontend.nix +++ b/pkgs/applications/misc/tandoor-recipes/frontend.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchYarnDeps, fixup_yarn_lock, callPackage, nodejs_16 }: +{ stdenv, fetchYarnDeps, fixup_yarn_lock, callPackage, nodejs }: let common = callPackage ./common.nix { }; in @@ -15,9 +15,8 @@ stdenv.mkDerivation { nativeBuildInputs = [ fixup_yarn_lock - # Use Node JS 16 because of @achrinza/node-ipc@9.2.2 - nodejs_16 - nodejs_16.pkgs.yarn + nodejs + nodejs.pkgs.yarn ]; configurePhase = ''