From ff95913192eea0f4b3d288347e062002c111a55e Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Thu, 20 Apr 2023 14:16:48 +0300 Subject: anki: add missing darwin components --- pkgs/games/anki/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'pkgs/games/anki') diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index bf82e7d90350..38cb2c806f68 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -17,6 +17,8 @@ , rustPlatform , writeShellScriptBin , yarn +, swift +, AVKit , CoreAudio }: @@ -138,7 +140,7 @@ python3.pkgs.buildPythonApplication { ninja qt6.wrapQtAppsHook rsync - ]; + ] ++ lib.optional stdenv.isDarwin swift; nativeCheckInputs = with python3.pkgs; [ pytest mock astroid ]; buildInputs = [ @@ -186,7 +188,10 @@ python3.pkgs.buildPythonApplication { waitress werkzeug zipp - ] ++ lib.optionals stdenv.isDarwin [ CoreAudio ]; + ] ++ lib.optionals stdenv.isDarwin [ + AVKit + CoreAudio + ]; # Activate optimizations RELEASE = true; -- cgit v1.2.3