From 8c7e5317157ea34a1091c27befa6d02dcc137d8a Mon Sep 17 00:00:00 2001 From: yasuaki640 Date: Sun, 18 Jan 2026 20:36:06 +0900 Subject: [PATCH] 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 --- plugins/elixir.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/plugins/elixir.json b/plugins/elixir.json index 49cc2656d63..011c8d1d5b5 100644 --- a/plugins/elixir.json +++ b/plugins/elixir.json @@ -1,11 +1,6 @@ { "name": "elixir", - "version": "0.0.1", - "packages": { - "darwin.apple_sdk.frameworks.CoreServices": { - "platforms": ["aarch64-darwin", "x86_64-darwin"] - } - }, + "version": "0.0.2", "env": { "MIX_HOME": "{{ .Virtenv }}/mix", "HEX_HOME": "{{ .Virtenv }}/hex",