rust-analyzer-unwrapped: apple-sdk refactor

We don't need to define frameworks manually.

+1 -6
-3
pkgs/development/tools/rust/rust-analyzer/default.nix
··· 1 { 2 lib, 3 stdenv, 4 - callPackage, 5 fetchFromGitHub, 6 rustPlatform, 7 - CoreServices, 8 cmake, 9 libiconv, 10 useMimalloc ? false, ··· 44 nativeBuildInputs = lib.optional useMimalloc cmake; 45 46 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 47 - CoreServices 48 libiconv 49 ]; 50
··· 1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 rustPlatform, 6 cmake, 7 libiconv, 8 useMimalloc ? false, ··· 42 nativeBuildInputs = lib.optional useMimalloc cmake; 43 44 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 45 libiconv 46 ]; 47
+1 -3
pkgs/top-level/all-packages.nix
··· 7081 opensyclWithRocm = opensycl.override { rocmSupport = true; }; 7082 7083 rustfmt = rustPackages.rustfmt; 7084 - rust-analyzer-unwrapped = callPackage ../development/tools/rust/rust-analyzer { 7085 - inherit (darwin.apple_sdk.frameworks) CoreServices; 7086 - }; 7087 rust-analyzer = callPackage ../development/tools/rust/rust-analyzer/wrapper.nix { }; 7088 rust-bindgen-unwrapped = callPackage ../development/tools/rust/bindgen/unwrapped.nix { }; 7089 rust-bindgen = callPackage ../development/tools/rust/bindgen { };
··· 7081 opensyclWithRocm = opensycl.override { rocmSupport = true; }; 7082 7083 rustfmt = rustPackages.rustfmt; 7084 + rust-analyzer-unwrapped = callPackage ../development/tools/rust/rust-analyzer { }; 7085 rust-analyzer = callPackage ../development/tools/rust/rust-analyzer/wrapper.nix { }; 7086 rust-bindgen-unwrapped = callPackage ../development/tools/rust/bindgen/unwrapped.nix { }; 7087 rust-bindgen = callPackage ../development/tools/rust/bindgen { };