summary refs log tree commit diff
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-10-18 16:45:26 -0500
committerWill Dietz <w@wdtz.org>2018-10-18 16:47:41 -0500
commitf58fcf849e848515403c6db2d443eee1ba4e7a56 (patch)
tree70bc6e777e25ca11287496ee3a7b737475ab7934 /pkgs/tools/inputmethods
parent72f31fbc196775eae551c1ce7f8b56b819ab96e0 (diff)
downloadnixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.tar
nixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.tar.gz
nixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.tar.bz2
nixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.tar.lz
nixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.tar.xz
nixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.tar.zst
nixlib-f58fcf849e848515403c6db2d443eee1ba4e7a56.zip
libinput-gestures: entry point is a python script, add dep
Otherwise we have a raw shebang that doesn't work :(
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/libinput-gestures/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/inputmethods/libinput-gestures/default.nix b/pkgs/tools/inputmethods/libinput-gestures/default.nix
index e63decd7a4ea..77eae2c55e1d 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 =
     ''