nixpkgs/pkgs/development/libraries/libinput/default.nix

48 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig
, libevdev, mtdev, udev, libwacom
, documentationSupport ? false, 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 14:26:05 -07:00
assert documentationSupport -> doxygen != null && graphviz != null;
assert eventGUISupport -> cairo != null && glib != null && gtk3 != null;
assert testsSupport -> check != null && valgrind != null;
let
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
in
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
};
configureFlags = [
(mkFlag documentationSupport "documentation")
(mkFlag eventGUISupport "event-gui")
(mkFlag testsSupport "tests")
];
nativeBuildInputs = [ pkgconfig ];
2016-04-08 13:11:46 -07:00
buildInputs = [ libevdev mtdev libwacom ]
++ 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 ];
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
};
}