mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
kitty: use makeBinaryWrapper to wrap kitty executable (#352795)
This commit is contained in:
commit
62cfb3e8d8
@ -28,6 +28,8 @@
|
|||||||
, go_1_23
|
, go_1_23
|
||||||
, buildGo123Module
|
, buildGo123Module
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
|
, makeBinaryWrapper
|
||||||
|
, autoSignDarwinBinariesHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with python3Packages;
|
with python3Packages;
|
||||||
@ -85,9 +87,11 @@ buildPythonApplication rec {
|
|||||||
sphinx-inline-tabs
|
sphinx-inline-tabs
|
||||||
go_1_23
|
go_1_23
|
||||||
fontconfig
|
fontconfig
|
||||||
|
makeBinaryWrapper
|
||||||
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||||
imagemagick
|
imagemagick
|
||||||
libicns # For the png2icns tool.
|
libicns # For the png2icns tool.
|
||||||
|
autoSignDarwinBinariesHook
|
||||||
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||||
wayland-scanner
|
wayland-scanner
|
||||||
];
|
];
|
||||||
|
@ -1616,6 +1616,7 @@ with pkgs;
|
|||||||
|
|
||||||
kitty = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/kitty {
|
kitty = darwin.apple_sdk_11_0.callPackage ../applications/terminal-emulators/kitty {
|
||||||
harfbuzz = harfbuzz.override { withCoreText = stdenv.hostPlatform.isDarwin; };
|
harfbuzz = harfbuzz.override { withCoreText = stdenv.hostPlatform.isDarwin; };
|
||||||
|
inherit (darwin) autoSignDarwinBinariesHook;
|
||||||
inherit (darwin.apple_sdk_11_0) Libsystem;
|
inherit (darwin.apple_sdk_11_0) Libsystem;
|
||||||
inherit (darwin.apple_sdk_11_0.frameworks)
|
inherit (darwin.apple_sdk_11_0.frameworks)
|
||||||
Cocoa
|
Cocoa
|
||||||
|
Loading…
Reference in New Issue
Block a user