pnpm.fetchDeps: fix use for cross

+4 -1
+4 -1
pkgs/development/tools/pnpm/generic.nix
··· 10 withNode ? true, 11 version, 12 hash, 13 }: 14 let 15 majorVersion = lib.versions.major version; ··· 70 71 passthru = 72 let 73 - fetchDepsAttrs = callPackages ./fetch-deps { pnpm = finalAttrs.finalPackage; }; 74 in 75 { 76 inherit (fetchDepsAttrs) fetchDeps configHook;
··· 10 withNode ? true, 11 version, 12 hash, 13 + buildPackages, 14 }: 15 let 16 majorVersion = lib.versions.major version; ··· 71 72 passthru = 73 let 74 + fetchDepsAttrs = callPackages ./fetch-deps { 75 + pnpm = buildPackages."pnpm_${lib.versions.major version}"; 76 + }; 77 in 78 { 79 inherit (fetchDepsAttrs) fetchDeps configHook;