From 3d409345416cda845407e3075f5eaf7a590d9db5 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sun, 23 Apr 2023 13:39:45 +0000 Subject: [PATCH] rofi-wayland: fix cross --- pkgs/applications/misc/rofi/wayland.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/rofi/wayland.nix b/pkgs/applications/misc/rofi/wayland.nix index d6e6946af54..dfb096d654d 100644 --- a/pkgs/applications/misc/rofi/wayland.nix +++ b/pkgs/applications/misc/rofi/wayland.nix @@ -2,6 +2,7 @@ , lib , fetchFromGitHub , rofi-unwrapped +, wayland-scanner , wayland-protocols , wayland }: @@ -18,8 +19,8 @@ rofi-unwrapped.overrideAttrs (oldAttrs: rec { sha256 = "sha256-ddKLV7NvqgTQl5YlAEyBK0oalcJsLASK4z3qArQPUDQ="; }; - nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wayland-protocols ]; - buildInputs = oldAttrs.buildInputs ++ [ wayland ]; + nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ wayland-scanner ]; + buildInputs = oldAttrs.buildInputs ++ [ wayland wayland-protocols ]; meta = with lib; { description = "Window switcher, run dialog and dmenu replacement for Wayland";