Unverified Commit 23e0867c authored by Lin Jian's avatar Lin Jian Committed by GitHub
Browse files

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

parents 10bee29e 0c50579d
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);