From 68d386e5700ac1be79d7ac6407ebcf6c0df9c045 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 17 Apr 2025 17:29:46 -0400 Subject: [PATCH] libAppleWM: fix build failure due to missing xorg-macros Signed-off-by: Ihar Hrachyshka --- pkgs/servers/x11/xorg/overrides.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 8c72f10418edb..327f8b3296cd5 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -277,8 +277,10 @@ self: super: }); libAppleWM = super.libAppleWM.overrideAttrs (attrs: { - nativeBuildInputs = attrs.nativeBuildInputs ++ [ autoreconfHook ]; - buildInputs = attrs.buildInputs ++ [ xorg.utilmacros ]; + nativeBuildInputs = attrs.nativeBuildInputs ++ [ + autoreconfHook + xorg.utilmacros + ]; meta = attrs.meta // { platforms = lib.platforms.darwin; };