From f58fcf849e848515403c6db2d443eee1ba4e7a56 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 18 Oct 2018 16:45:26 -0500 Subject: [PATCH] libinput-gestures: entry point is a python script, add dep Otherwise we have a raw shebang that doesn't work :( --- pkgs/tools/inputmethods/libinput-gestures/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/inputmethods/libinput-gestures/default.nix b/pkgs/tools/inputmethods/libinput-gestures/default.nix index e63decd7a4e..77eae2c55e1 100644 --- a/pkgs/tools/inputmethods/libinput-gestures/default.nix +++ b/pkgs/tools/inputmethods/libinput-gestures/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchFromGitHub, makeWrapper, - libinput, wmctrl, + libinput, wmctrl, python3, xdotool ? null, extraUtilsPath ? lib.optional (xdotool != null) xdotool }: @@ -20,6 +20,7 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ python3 ]; postPatch = ''