Unverified Commit 0c50579d authored by yuanw's avatar yuanw
Browse files

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

parent aab15032
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
{
  # Basic
  stdenv,
  lib,
  melpaBuild,
  fetchFromGitHub,
@@ -42,12 +43,14 @@ let
  pythonEnv = python3.withPackages pythonPkgs;

  otherPackageLists = [
    (
      [
        git
        nodejs
        wmctrl
      xdotool
      ]
      ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform xdotool) [ xdotool ]
    )
  ]
  ++ appOtherDeps;
  otherPkgs = builtins.concatLists (otherPackageLists);