tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pnpm.fetchDeps: fix use for cross
FliegendeWurst
9 months ago
39fcc87a
cf3cdb59
+4
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
pnpm
generic.nix
+4
-1
pkgs/development/tools/pnpm/generic.nix
···
10
withNode ? true,
11
version,
12
hash,
0
13
}:
14
let
15
majorVersion = lib.versions.major version;
···
70
71
passthru =
72
let
73
-
fetchDepsAttrs = callPackages ./fetch-deps { pnpm = finalAttrs.finalPackage; };
0
0
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;