2015-02-23 23:32:49 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2016-02-26 02:03:28 -08:00
|
|
|
, libevdev, mtdev, udev, libwacom
|
2015-08-13 11:39:12 -07:00
|
|
|
, documentationSupport ? false, doxygen ? null, graphviz ? null # Documentation
|
2015-02-23 23:32:49 -08:00
|
|
|
, eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support
|
|
|
|
, testsSupport ? false, check ? null, valgrind ? null
|
|
|
|
}:
|
2014-10-17 14:26:05 -07:00
|
|
|
|
2015-02-23 23:32:49 -08:00
|
|
|
assert documentationSupport -> doxygen != null && graphviz != null;
|
|
|
|
assert eventGUISupport -> cairo != null && glib != null && gtk3 != null;
|
|
|
|
assert testsSupport -> check != null && valgrind != null;
|
|
|
|
|
2015-06-01 12:29:47 -07:00
|
|
|
let
|
|
|
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
|
|
|
in
|
|
|
|
|
2015-02-23 23:32:49 -08:00
|
|
|
with stdenv.lib;
|
2014-10-17 14:26:05 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-04-19 22:39:53 -07:00
|
|
|
name = "libinput-1.2.3";
|
2014-10-17 14:26:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz";
|
2016-04-19 22:39:53 -07:00
|
|
|
sha256 = "1wp937sn2dzqhrbl2bhapqb0pvybc80z8ynw7yfkm5ycl39skch9";
|
2014-10-17 14:26:05 -07:00
|
|
|
};
|
|
|
|
|
2015-02-23 23:32:49 -08:00
|
|
|
configureFlags = [
|
2015-06-01 12:29:47 -07:00
|
|
|
(mkFlag documentationSupport "documentation")
|
|
|
|
(mkFlag eventGUISupport "event-gui")
|
|
|
|
(mkFlag testsSupport "tests")
|
2015-02-23 23:32:49 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2016-04-08 13:11:46 -07:00
|
|
|
buildInputs = [ libevdev mtdev libwacom ]
|
2015-02-23 23:32:49 -08:00
|
|
|
++ optionals eventGUISupport [ cairo glib gtk3 ]
|
|
|
|
++ optionals documentationSupport [ doxygen graphviz ]
|
|
|
|
++ optionals testsSupport [ check valgrind ];
|
2014-10-17 14:26:05 -07:00
|
|
|
|
2016-04-08 13:11:46 -07:00
|
|
|
propagatedBuildInputs = [ udev ];
|
|
|
|
|
2015-02-23 23:32:49 -08: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 14:26:05 -07:00
|
|
|
};
|
|
|
|
}
|