Unverified Commit 1bb5759c authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #227242 from wegank/anki-darwin-pre

anki: add missing darwin components
parents cf742a8b ff959131
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -35681,7 +35681,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 { };