File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change 12
12
# The target systems and their vercel/pkg mapping
13
13
systems = {
14
14
"x86_64-linux" = [ "linux" "x64" ] ;
15
- "aarch64-linux" = [ "linux" "arm64" ] ;
16
15
"x86_64-windows" = [ "win32" "x64" ] ;
17
- "aarch64-windows" = [ "win32" "arm64" ] ;
18
16
"x86_64-darwin" = [ "darwin" "x64" ] ;
19
17
"aarch64-darwin" = [ "darwin" "arm64" ] ;
20
18
} ;
Original file line number Diff line number Diff line change @@ -44,11 +44,10 @@ rec {
44
44
url = "https://github.com/yao-pkg/pkg-fetch/releases/download/v3.5/node-v20.11.1-macos-x64" ;
45
45
sha256 = "1558a49dfea01ae42702a71eaa1c7a6479abde8b2778bc7cb4f9a65d65a0afa6" ;
46
46
} ;
47
- # No build for v20.11.1 macos-arm64 build
48
- # "macos-arm64" = fetchurl {
49
- # url = "";
50
- # sha256 = "";
51
- # };
47
+ "macos-arm64" = fetchurl {
48
+ url = "https://github.com/yao-pkg/pkg-fetch/releases/download/v3.5/node-v20.11.1-macos-arm64" ;
49
+ sha256 = "1fa7f9e233820cfc5668ba21b70c463214f981fc69f1b8175b25dfa871451e26" ;
50
+ } ;
52
51
} ;
53
52
} ;
54
53
pkgCachePath =
70
69
name = fetchedName pkgBuild . macos-x64 . name ;
71
70
path = pkgBuild . macos-x64 ;
72
71
}
73
- # No build for v18.15 macos-arm64 build
74
- # {
75
- # name = fetchedName pkgBuild.macos-arm64.name;
76
- # path = pkgBuild.macos-arm64;
77
- # }
72
+ {
73
+ name = fetchedName pkgBuild . macos-arm64 . name ;
74
+ path = pkgBuild . macos-arm64 ;
75
+ }
78
76
] ;
79
77
}
You can’t perform that action at this time.
0 commit comments