2015-02-24 07:32:49 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
|
|
|
, libevdev, mtdev, udev
|
|
|
|
, documentationSupport ? true, doxygen ? null, graphviz ? null # Documentation
|
|
|
|
, eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support
|
|
|
|
, testsSupport ? false, check ? null, valgrind ? null
|
|
|
|
}:
|
2014-10-17 22:26:05 +01:00
|
|
|
|
2015-02-24 07:32:49 +00:00
|
|
|
assert documentationSupport -> doxygen != null && graphviz != null;
|
|
|
|
assert eventGUISupport -> cairo != null && glib != null && gtk3 != null;
|
|
|
|
assert testsSupport -> check != null && valgrind != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-10-17 22:26:05 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-11 06:35:05 +01:00
|
|
|
name = "libinput-0.15.0";
|
2014-10-17 22:26:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz";
|
2015-05-11 06:35:05 +01:00
|
|
|
sha256 = "07gw2bhjikiix6bgln03n0zqnbqw18svlf2dfpsv893xjwcdnmhn";
|
2014-10-17 22:26:05 +01:00
|
|
|
};
|
|
|
|
|
2015-02-24 07:32:49 +00:00
|
|
|
configureFlags = [
|
2015-05-22 21:33:08 +01:00
|
|
|
(mkEnable documentationSupport "documentation" null)
|
|
|
|
(mkEnable eventGUISupport "event-gui" null)
|
|
|
|
(mkEnable testsSupport "tests" null)
|
2015-02-24 07:32:49 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libevdev mtdev udev ]
|
|
|
|
++ optionals eventGUISupport [ cairo glib gtk3 ]
|
|
|
|
++ optionals documentationSupport [ doxygen graphviz ]
|
|
|
|
++ optionals testsSupport [ check valgrind ];
|
2014-10-17 22:26:05 +01:00
|
|
|
|
2015-02-24 07:32:49 +00:00
|
|
|
meta = {
|
|
|
|
description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver";
|
|
|
|
homepage = http://www.freedesktop.org/wiki/Software/libinput;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ codyopel wkennington ];
|
2014-10-17 22:26:05 +01:00
|
|
|
};
|
|
|
|
}
|