anki: add missing darwin components
This commit is contained in:
parent
5608f9dbad
commit
ff95913192
2 changed files with 8 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -35689,7 +35689,7 @@ with pkgs;
|
|||
angband = callPackage ../games/angband { };
|
||||
|
||||
anki = callPackage ../games/anki {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreAudio;
|
||||
inherit (darwin.apple_sdk.frameworks) AVKit CoreAudio;
|
||||
};
|
||||
anki-bin = callPackage ../games/anki/bin.nix { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue