emacs.pkgs.emacs-application-framework: use xdotool when available

This commit is contained in:
yuanw
2025-09-01 12:42:10 -06:00
parent aab150324f
commit 0c50579dfc
@@ -1,5 +1,6 @@
{
# Basic
stdenv,
lib,
melpaBuild,
fetchFromGitHub,
@@ -42,12 +43,14 @@ let
pythonEnv = python3.withPackages pythonPkgs;
otherPackageLists = [
[
git
nodejs
wmctrl
xdotool
]
(
[
git
nodejs
wmctrl
]
++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform xdotool) [ xdotool ]
)
]
++ appOtherDeps;
otherPkgs = builtins.concatLists (otherPackageLists);