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