From a50d7295727eff61665857da55d6d5e04c2aa540 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sun, 13 Oct 2024 08:54:23 +1000 Subject: [PATCH] darwin.openwith: remove apple_sdk.frameworks the apple sdk is now propagated by swift --- pkgs/os-specific/darwin/openwith/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/os-specific/darwin/openwith/default.nix b/pkgs/os-specific/darwin/openwith/default.nix index dbbd94fe4363..3631f7d495be 100644 --- a/pkgs/os-specific/darwin/openwith/default.nix +++ b/pkgs/os-specific/darwin/openwith/default.nix @@ -1,7 +1,7 @@ { lib, swiftPackages, fetchFromGitHub }: let - inherit (swiftPackages) apple_sdk stdenv swift; + inherit (swiftPackages) stdenv swift; arch = if stdenv.hostPlatform.isAarch64 then "arm64" else "x86_64"; in stdenv.mkDerivation rec { @@ -17,8 +17,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ swift ]; - buildInputs = with apple_sdk.frameworks; [ AppKit Foundation UniformTypeIdentifiers ]; - makeFlags = [ "openwith_${arch}" ]; installPhase = ''