mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 14:53:52 +00:00
Merge pull request #233136 from mokrinsky/wezterm-darwin-fix
wezterm: fix darwin build
This commit is contained in:
commit
1dbe7ef7b5
@ -22,6 +22,7 @@
|
||||
, CoreGraphics
|
||||
, Cocoa
|
||||
, Foundation
|
||||
, System
|
||||
, libiconv
|
||||
, UserNotifications
|
||||
, nixosTests
|
||||
@ -81,11 +82,14 @@ rustPlatform.buildRustPackage rec {
|
||||
CoreGraphics
|
||||
Foundation
|
||||
libiconv
|
||||
System
|
||||
UserNotifications
|
||||
];
|
||||
|
||||
buildFeatures = [ "distro-defaults" ];
|
||||
|
||||
env.NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-framework System";
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/nix-support
|
||||
echo "${passthru.terminfo}" >> $out/nix-support/propagated-user-env-packages
|
||||
|
@ -2714,7 +2714,7 @@ with pkgs;
|
||||
wayst = callPackage ../applications/terminal-emulators/wayst { };
|
||||
|
||||
wezterm = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/wezterm {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Cocoa CoreGraphics Foundation UserNotifications;
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Cocoa CoreGraphics Foundation UserNotifications System;
|
||||
};
|
||||
|
||||
x3270 = callPackage ../applications/terminal-emulators/x3270 { };
|
||||
|
Loading…
Reference in New Issue
Block a user