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

61 lines
1.9 KiB
Nix
Raw Normal View History

2017-09-18 11:34:10 +01:00
{ stdenv, fetchurl, pkgconfig, meson, ninja
, 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, python3Packages ? null
}:
2014-10-17 22:26:05 +01:00
assert documentationSupport -> doxygen != null && graphviz != null;
assert eventGUISupport -> cairo != null && glib != null && gtk3 != null;
assert testsSupport -> check != null && valgrind != null && python3Packages != null;
let
2017-09-18 11:34:10 +01:00
mkFlag = optSet: flag: "-D${flag}=${stdenv.lib.boolToString optSet}";
in
with stdenv.lib;
stdenv.mkDerivation rec {
2016-09-18 18:01:01 +01:00
name = "libinput-${version}";
2017-12-03 22:49:15 +00:00
version = "1.9.3";
2014-10-17 22:26:05 +01:00
src = fetchurl {
url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz";
2017-12-03 22:49:15 +00:00
sha256 = "09wkc5qqk1k2a68cwfy4x853z8z35wf2qkijh66kacsvc2fjq394";
2014-10-17 22:26:05 +01:00
};
outputs = [ "out" "dev" ];
2016-04-25 12:51:41 +01:00
2017-09-18 11:34:10 +01:00
mesonFlags = [
(mkFlag documentationSupport "documentation")
2017-09-18 11:34:10 +01:00
(mkFlag eventGUISupport "debug-gui")
(mkFlag testsSupport "tests")
];
2017-09-18 11:34:10 +01:00
nativeBuildInputs = [ pkgconfig meson ninja ]
++ optionals documentationSupport [ doxygen graphviz ]
++ optionals testsSupport [ check valgrind python3Packages.pyparsing ];
2014-10-17 22:26:05 +01:00
2017-09-18 11:34:10 +01:00
buildInputs = [ libevdev mtdev libwacom ]
++ optionals eventGUISupport [ cairo glib gtk3 ];
2016-04-08 21:11:46 +01:00
propagatedBuildInputs = [ udev ];
patches = [ ./udev-absolute-path.patch ];
preBuild = ''
# meson setup-hook changes the directory so the files are located one level up
patchShebangs ../udev/parse_hwdb.py
patchShebangs ../test/symbols-leak-test.in
'';
doCheck = testsSupport;
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
};
}