about summary refs log tree commit diff
path: root/pkgs/applications/misc/tandoor-recipes
diff options
context:
space:
mode:
authorBruno BELANYI <bruno@belanyi.fr>2023-05-06 17:55:02 +0100
committerBruno BELANYI <bruno@belanyi.fr>2023-05-06 17:55:04 +0100
commitff573fb2adc8fb9baa67308843c04e2f8f4d0db4 (patch)
tree81feef8a32f29ea448e8c6b3a0aea59d308b47bb /pkgs/applications/misc/tandoor-recipes
parent96503103487d34ff5653782d61abe6c9506ebc97 (diff)
tandoor-recipes: frontend: 'nodejs_16' -> 'nodejs'
Diffstat (limited to 'pkgs/applications/misc/tandoor-recipes')
-rw-r--r--pkgs/applications/misc/tandoor-recipes/frontend.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/applications/misc/tandoor-recipes/frontend.nix b/pkgs/applications/misc/tandoor-recipes/frontend.nix
index 2050d062d6a6e..98da59a1d2996 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 = ''