From c0adb0b97be930c517820058820580e1a3dad24a Mon Sep 17 00:00:00 2001 From: V Date: Tue, 13 Feb 2024 18:02:16 +0100 Subject: [PATCH] dmenu-wayland: add meta.mainProgram This is necessary for lib.getExe to work correctly, as the package name does not match the binary name. Change-Id: I1a46023a1201b8b51798de44763b970cb7712451 --- pkgs/applications/misc/dmenu/wayland.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/dmenu/wayland.nix b/pkgs/applications/misc/dmenu/wayland.nix index 08e9d9422459..35a50481bea7 100644 --- a/pkgs/applications/misc/dmenu/wayland.nix +++ b/pkgs/applications/misc/dmenu/wayland.nix @@ -40,5 +40,6 @@ stdenv.mkDerivation rec { description = "An efficient dynamic menu for wayland (wlroots)"; homepage = "https://github.com/nyyManni/dmenu-wayland"; maintainers = with maintainers; [ rewine ]; + mainProgram = "dmenu-wl"; }; }