summary refs log tree commit diff
path: root/pkgs/applications/misc/tandoor-recipes/frontend.nix
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-11-06 11:59:21 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2023-04-25 11:28:17 +0200
commitaad577bd30b0ab16a7859973c88edd6d0d5becde (patch)
tree7f24e0060e8644031402d0e2770ca080aeea4f7a /pkgs/applications/misc/tandoor-recipes/frontend.nix
parent1c6cb4cabd84351cbc2dbc2dec4f5636a75f543a (diff)
downloadnixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.tar
nixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.tar.gz
nixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.tar.bz2
nixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.tar.lz
nixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.tar.xz
nixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.tar.zst
nixpkgs-aad577bd30b0ab16a7859973c88edd6d0d5becde.zip
nodejs*: normalise names to better fit other packages
Versioned package attributes are usually named like $pname_$version
eg: nodejs-14_x -> nodejs_14
Diffstat (limited to 'pkgs/applications/misc/tandoor-recipes/frontend.nix')
-rw-r--r--pkgs/applications/misc/tandoor-recipes/frontend.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/misc/tandoor-recipes/frontend.nix b/pkgs/applications/misc/tandoor-recipes/frontend.nix
index 47dcde5aca5..2050d062d6a 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_x }:
+{ stdenv, fetchYarnDeps, fixup_yarn_lock, callPackage, nodejs_16 }:
 let
   common = callPackage ./common.nix { };
 in
@@ -16,8 +16,8 @@ stdenv.mkDerivation {
   nativeBuildInputs = [
     fixup_yarn_lock
     # Use Node JS 16 because of @achrinza/node-ipc@9.2.2
-    nodejs-16_x
-    nodejs-16_x.pkgs.yarn
+    nodejs_16
+    nodejs_16.pkgs.yarn
   ];
 
   configurePhase = ''