diff options
| author | Yt <raphael@megzari.com> | 2024-01-10 04:02:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-10 04:02:06 +0100 |
| commit | 1ee8cbde4c7b4975b337ee9d3290acefbbf65e70 (patch) | |
| tree | f1f1ef64bc7cb4efeec8b4229edd89f891090997 | |
| parent | Merge pull request #278287 from mweinelt/openswitcher (diff) | |
| parent | alacritty: fix darwin build (diff) | |
| download | nixpkgs-1ee8cbde4c7b4975b337ee9d3290acefbbf65e70.tar.gz | |
Merge pull request #279907 from happysalada/fix_alacritty_darwin
alacritty: fix darwin build
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d71b01523b2..20a9726b6882 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3022,7 +3022,7 @@ with pkgs; ### APPLICATIONS/TERMINAL-EMULATORS alacritty = callPackage ../applications/terminal-emulators/alacritty { - inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL; + inherit (darwin.apple_sdk_11_0.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL; }; blackbox-terminal = callPackage ../applications/terminal-emulators/blackbox-terminal { }; |
