diff options
| author | OPNA2608 <christoph.neidahl@gmail.com> | 2023-05-08 18:33:16 +0200 |
|---|---|---|
| committer | OPNA2608 <christoph.neidahl@gmail.com> | 2023-05-08 18:33:16 +0200 |
| commit | a6bb41168f32f34ae13fbdf29ca877fc4e6b3a21 (patch) | |
| tree | 31b20bc7f94ccaedfd3b09e4623d3fb829598303 | |
| parent | fire: Fix build on Darwin (diff) | |
| download | nixpkgs-a6bb41168f32f34ae13fbdf29ca877fc4e6b3a21.tar.gz | |
dexed: Fix build on Darwin
| -rw-r--r-- | pkgs/applications/audio/dexed/default.nix | 2 | ||||
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/audio/dexed/default.nix b/pkgs/applications/audio/dexed/default.nix index 67d9a56a1d0c..d7e8b0fd2380 100644 --- a/pkgs/applications/audio/dexed/default.nix +++ b/pkgs/applications/audio/dexed/default.nix @@ -11,6 +11,7 @@ , freetype , alsa-lib , libjack2 +, Accelerate , Cocoa , WebKit , MetalKit @@ -52,6 +53,7 @@ stdenv.mkDerivation rec { alsa-lib libjack2 ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ + Accelerate Cocoa WebKit MetalKit diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cc645c96b5cd..516156947e72 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -29806,7 +29806,7 @@ with pkgs; denemo = callPackage ../applications/audio/denemo { }; dexed = darwin.apple_sdk_11_0.callPackage ../applications/audio/dexed { - inherit (darwin.apple_sdk_11_0.frameworks) Cocoa WebKit MetalKit DiscRecording CoreAudioKit; + inherit (darwin.apple_sdk_11_0.frameworks) Accelerate Cocoa WebKit MetalKit DiscRecording CoreAudioKit; inherit (darwin.apple_sdk_11_0.libs) simd; }; |
