2015-02-24 07:32:49 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2016-02-26 10:03:28 +00:00
|
|
|
, libevdev, mtdev, udev, libwacom
|
2015-08-13 18:39:12 +00:00
|
|
|
, documentationSupport ? false, doxygen ? null, graphviz ? null # Documentation
|
2015-02-24 07:32:49 +00:00
|
|
|
, eventGUISupport ? false, cairo ? null, glib ? null, gtk3 ? null # GUI event viewer support
|
|
|
|
, testsSupport ? false, check ? null, valgrind ? null
|
2016-05-27 12:17:11 +00:00
|
|
|
, autoconf, automake
|
2015-02-24 07:32:49 +00:00
|
|
|
}:
|
2014-10-17 21:26:05 +00: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;
|
|
|
|
|
2015-06-01 19:29:47 +00:00
|
|
|
let
|
|
|
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
|
|
|
in
|
|
|
|
|
2015-02-24 07:32:49 +00:00
|
|
|
with stdenv.lib;
|
2014-10-17 21:26:05 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-18 17:01:01 +00:00
|
|
|
name = "libinput-${version}";
|
2016-11-17 10:31:10 +00:00
|
|
|
version = "1.5.1";
|
2014-10-17 21:26:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz";
|
2016-11-17 10:31:10 +00:00
|
|
|
sha256 = "d4f63933b0967bd691735af5e3919e2d29c2121d4e05867cc4e10ff3ae8e2dd8";
|
2014-10-17 21:26:05 +00:00
|
|
|
};
|
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2016-04-25 11:51:41 +00:00
|
|
|
|
2015-02-24 07:32:49 +00:00
|
|
|
configureFlags = [
|
2015-06-01 19:29:47 +00:00
|
|
|
(mkFlag documentationSupport "documentation")
|
|
|
|
(mkFlag eventGUISupport "event-gui")
|
|
|
|
(mkFlag testsSupport "tests")
|
2015-02-24 07:32:49 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2016-05-27 12:17:11 +00:00
|
|
|
buildInputs = [ libevdev mtdev libwacom autoconf automake ]
|
2015-02-24 07:32:49 +00:00
|
|
|
++ optionals eventGUISupport [ cairo glib gtk3 ]
|
|
|
|
++ optionals documentationSupport [ doxygen graphviz ]
|
|
|
|
++ optionals testsSupport [ check valgrind ];
|
2014-10-17 21:26:05 +00:00
|
|
|
|
2016-04-08 20:11:46 +00:00
|
|
|
propagatedBuildInputs = [ udev ];
|
|
|
|
|
2016-05-27 12:17:11 +00:00
|
|
|
patches = [ ./udev-absolute-path.patch ];
|
|
|
|
patchFlags = [ "-p0" ];
|
|
|
|
|
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 21:26:05 +00:00
|
|
|
};
|
|
|
|
}
|