emacs.pkgs.emacs-application-framework: use xdotool when available. (#438289)

authored by Lin Jian and committed by GitHub 23e0867c 10bee29e

+9 -6
+9 -6
pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-application-framework/default.nix
··· 1 { 2 # Basic 3 lib, 4 melpaBuild, 5 fetchFromGitHub, ··· 42 pythonEnv = python3.withPackages pythonPkgs; 43 44 otherPackageLists = [ 45 - [ 46 - git 47 - nodejs 48 - wmctrl 49 - xdotool 50 - ] 51 ] 52 ++ appOtherDeps; 53 otherPkgs = builtins.concatLists (otherPackageLists);
··· 1 { 2 # Basic 3 + stdenv, 4 lib, 5 melpaBuild, 6 fetchFromGitHub, ··· 43 pythonEnv = python3.withPackages pythonPkgs; 44 45 otherPackageLists = [ 46 + ( 47 + [ 48 + git 49 + nodejs 50 + wmctrl 51 + ] 52 + ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform xdotool) [ xdotool ] 53 + ) 54 ] 55 ++ appOtherDeps; 56 otherPkgs = builtins.concatLists (otherPackageLists);