2020-10-26 07:17:14 +00:00
|
|
|
{ stdenv, fetchFromGitLab, pkgconfig, meson, ninja
|
2017-10-16 10:55:40 +01:00
|
|
|
, libevdev, mtdev, udev, libwacom
|
2015-08-13 19:39:12 +01: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
|
2018-12-01 01:08:04 +00:00
|
|
|
, testsSupport ? false, check ? null, valgrind ? null, python3 ? null
|
2017-10-16 10:55:40 +01:00
|
|
|
}:
|
2014-10-17 22:26:05 +01:00
|
|
|
|
2018-12-01 01:08:04 +00:00
|
|
|
assert documentationSupport -> doxygen != null && graphviz != null && python3 != null;
|
2015-02-24 07:32:49 +00:00
|
|
|
assert eventGUISupport -> cairo != null && glib != null && gtk3 != null;
|
2018-12-01 01:08:04 +00:00
|
|
|
assert testsSupport -> check != null && valgrind != null && python3 != null;
|
2015-02-24 07:32:49 +00:00
|
|
|
|
2017-10-16 10:55:40 +01:00
|
|
|
let
|
2017-09-18 11:34:10 +01:00
|
|
|
mkFlag = optSet: flag: "-D${flag}=${stdenv.lib.boolToString optSet}";
|
2018-12-01 01:08:04 +00:00
|
|
|
|
|
|
|
sphinx-build = if documentationSupport then
|
|
|
|
python3.pkgs.sphinx.overrideAttrs (super: {
|
|
|
|
propagatedBuildInputs = super.propagatedBuildInputs ++ (with python3.pkgs; [ recommonmark sphinx_rtd_theme ]);
|
|
|
|
|
|
|
|
postFixup = super.postFixup or "" + ''
|
|
|
|
# Do not propagate Python
|
|
|
|
rm $out/nix-support/propagated-build-inputs
|
|
|
|
'';
|
|
|
|
})
|
|
|
|
else null;
|
2017-10-16 10:55:40 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libinput";
|
2020-12-02 15:00:42 +00:00
|
|
|
version = "1.16.4";
|
2020-10-26 07:17:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
domain = "gitlab.freedesktop.org";
|
|
|
|
owner = pname;
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-12-02 15:00:42 +00:00
|
|
|
sha256 = "1c81429kh9av9fanxmnjw5rvsjbzcyi7d0dx0gkyq5yysmpmrppi";
|
2014-10-17 22:26:05 +01:00
|
|
|
};
|
|
|
|
|
2018-08-30 14:27:26 +01:00
|
|
|
outputs = [ "bin" "out" "dev" ];
|
2016-04-25 12:51:41 +01:00
|
|
|
|
2017-09-18 11:34:10 +01:00
|
|
|
mesonFlags = [
|
2015-06-01 20:29:47 +01:00
|
|
|
(mkFlag documentationSupport "documentation")
|
2017-09-18 11:34:10 +01:00
|
|
|
(mkFlag eventGUISupport "debug-gui")
|
2015-06-01 20:29:47 +01:00
|
|
|
(mkFlag testsSupport "tests")
|
2019-10-06 11:50:58 +01:00
|
|
|
"--sysconfdir=/etc"
|
2018-09-03 22:58:48 +01:00
|
|
|
"--libexecdir=${placeholder "bin"}/libexec"
|
2015-02-24 07:32:49 +00:00
|
|
|
];
|
|
|
|
|
2018-12-01 01:08:04 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig meson ninja ]
|
2020-02-25 01:03:40 +00:00
|
|
|
++ optionals documentationSupport [ doxygen graphviz sphinx-build ];
|
2014-10-17 22:26:05 +01:00
|
|
|
|
2020-07-08 14:06:33 +01:00
|
|
|
buildInputs = [
|
|
|
|
libevdev
|
|
|
|
mtdev
|
|
|
|
libwacom
|
|
|
|
(python3.withPackages (pp: with pp; [
|
|
|
|
pp.libevdev # already in scope
|
|
|
|
pyudev
|
|
|
|
pyyaml
|
|
|
|
setuptools
|
|
|
|
]))
|
|
|
|
]
|
2020-02-25 01:03:40 +00:00
|
|
|
++ optionals eventGUISupport [ cairo glib gtk3 ];
|
|
|
|
|
2020-07-08 14:06:33 +01:00
|
|
|
checkInputs = [
|
|
|
|
check
|
|
|
|
valgrind
|
|
|
|
];
|
2017-09-18 11:34:10 +01:00
|
|
|
|
2016-04-08 21:11:46 +01:00
|
|
|
propagatedBuildInputs = [ udev ];
|
|
|
|
|
2017-10-16 10:55:40 +01:00
|
|
|
patches = [ ./udev-absolute-path.patch ];
|
|
|
|
|
2018-12-01 01:08:04 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs tools/helper-copy-and-exec-from-tmp.sh
|
|
|
|
patchShebangs test/symbols-leak-test
|
|
|
|
patchShebangs test/check-leftover-udev-rules.sh
|
2020-07-08 14:06:33 +01:00
|
|
|
patchShebangs test/helper-copy-and-exec-from-tmp.sh
|
2018-12-01 01:08:04 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = testsSupport && stdenv.hostPlatform == stdenv.buildPlatform;
|
2017-11-04 18:27:40 +00:00
|
|
|
|
2015-02-24 07:32:49 +00:00
|
|
|
meta = {
|
|
|
|
description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver";
|
2020-10-26 07:17:14 +00:00
|
|
|
homepage = "https://www.freedesktop.org/wiki/Software/libinput/";
|
2015-02-24 07:32:49 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ codyopel ];
|
2014-10-17 22:26:05 +01:00
|
|
|
};
|
|
|
|
}
|