3
0
Fork 0
forked from mirrors/nixpkgs

libinput: propagate udev dependency

This commit is contained in:
Alexander Ried 2016-04-08 22:11:46 +02:00
parent b080956078
commit 9722fa06e9

View file

@ -30,11 +30,13 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libevdev mtdev udev libwacom ]
buildInputs = [ libevdev mtdev libwacom ]
++ optionals eventGUISupport [ cairo glib gtk3 ]
++ optionals documentationSupport [ doxygen graphviz ]
++ optionals testsSupport [ check valgrind ];
propagatedBuildInputs = [ udev ];
meta = {
description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver";
homepage = http://www.freedesktop.org/wiki/Software/libinput;