Skip to content

Commit 8c7e531

Browse files
committed
plugins: remove darwin.apple_sdk.frameworks.CoreServices from elixir plugin
The CoreServices framework reference was added to fix file_system package compilation on macOS (PR #2462), but is no longer needed with the new Darwin SDK pattern introduced in nixpkgs. With the updated Darwin stdenv, the Apple SDK (including CoreServices) is now automatically provided, making the explicit framework reference obsolete. The old pattern using darwin.apple_sdk_11_0 has been removed from nixpkgs, causing installation failures on macOS. This change removes the packages section entirely and bumps the plugin version to 0.0.2. Fixes #2705 Fixes #2557
1 parent 89f380f commit 8c7e531

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

plugins/elixir.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
22
"name": "elixir",
3-
"version": "0.0.1",
4-
"packages": {
5-
"darwin.apple_sdk.frameworks.CoreServices": {
6-
"platforms": ["aarch64-darwin", "x86_64-darwin"]
7-
}
8-
},
3+
"version": "0.0.2",
94
"env": {
105
"MIX_HOME": "{{ .Virtenv }}/mix",
116
"HEX_HOME": "{{ .Virtenv }}/hex",

0 commit comments

Comments
 (0)