From 3ae50d2cc28975cd713febb7cccdfc5e46815e6e Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Wed, 5 Apr 2023 09:46:35 +0200 Subject: [PATCH] [Packages] xwayland makeWrapper dep should be in native build inputs --- overlays.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/overlays.nix b/overlays.nix index 00069a2..c595d01 100644 --- a/overlays.nix +++ b/overlays.nix @@ -69,9 +69,8 @@ in opensshOptimized = super.opensshOptimized or super.openssh; - xwayland = super.xwayland.overrideAttrs (old: { - buildInputs = old.buildInputs or [] ++ [ super.makeWrapper ]; + nativeBuildInputs = old.nativeBuildInputs or [] ++ [ super.makeWrapper ]; postInstall = old.postInstall or "" + '' # Force EGL Stream support wrapProgram $out/bin/Xwayland --add-flags "-eglstream"