summary refs log tree commit diff
path: root/pkgs/development/libraries/clutter
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2018-09-07 10:06:41 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2018-09-07 10:06:41 -0300
commitd113ca46a789a37160a781df295965f486ceafa7 (patch)
tree8e6e60ddddbcaded2cefa7e5277782effb4517c1 /pkgs/development/libraries/clutter
parent969104922005f4c99e87193bb2102984b7af4ca0 (diff)
downloadnixpkgs-d113ca46a789a37160a781df295965f486ceafa7.tar
nixpkgs-d113ca46a789a37160a781df295965f486ceafa7.tar.gz
nixpkgs-d113ca46a789a37160a781df295965f486ceafa7.tar.bz2
nixpkgs-d113ca46a789a37160a781df295965f486ceafa7.tar.lz
nixpkgs-d113ca46a789a37160a781df295965f486ceafa7.tar.xz
nixpkgs-d113ca46a789a37160a781df295965f486ceafa7.tar.zst
nixpkgs-d113ca46a789a37160a781df295965f486ceafa7.zip
clutter: enable evdev input (needed by some Deepin packages)
Diffstat (limited to 'pkgs/development/libraries/clutter')
-rw-r--r--pkgs/development/libraries/clutter/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/clutter/default.nix b/pkgs/development/libraries/clutter/default.nix
index 705aa7252d1..d8150fd1150 100644
--- a/pkgs/development/libraries/clutter/default.nix
+++ b/pkgs/development/libraries/clutter/default.nix
@@ -1,6 +1,6 @@
 { stdenv, fetchurl, pkgconfig, libGLU_combined, libX11, libXext, libXfixes
-, libXdamage, libXcomposite, libXi, libxcb, cogl, pango, atk, json-glib,
-gobjectIntrospection, gtk3, gnome3
+, libXdamage, libXcomposite, libXi, libxcb, cogl, pango, atk, json-glib
+, gobjectIntrospection, gtk3, gnome3, libinput, libgudev, libxkbcommon
 }:
 
 let
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig ];
   propagatedBuildInputs =
     [ libX11 libGLU_combined libXext libXfixes libXdamage libXcomposite libXi cogl pango
-      atk json-glib gobjectIntrospection libxcb
+      atk json-glib gobjectIntrospection libxcb libinput libgudev libxkbcommon
     ];
 
   configureFlags = [ "--enable-introspection" ]; # needed by muffin AFAIK