2021-08-03 08:53:10 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, meson, ninja
|
2017-10-16 09:55:40 +00:00
|
|
|
, libevdev, mtdev, udev, libwacom
|
2021-08-05 14:49:10 +00:00
|
|
|
, documentationSupport ? false, doxygen, graphviz # Documentation
|
|
|
|
, eventGUISupport ? false, cairo, glib, gtk3 # GUI event viewer support
|
|
|
|
, testsSupport ? false, check, valgrind, python3
|
2021-11-15 11:46:20 +00:00
|
|
|
, nixosTests
|
2017-10-16 09:55:40 +00:00
|
|
|
}:
|
2014-10-17 21:26:05 +00:00
|
|
|
|
2017-10-16 09:55:40 +00:00
|
|
|
let
|
2021-01-21 17:00:13 +00:00
|
|
|
mkFlag = optSet: flag: "-D${flag}=${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 09:55:40 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "libinput";
|
2021-09-21 14:35:22 +00:00
|
|
|
version = "1.19.1";
|
2021-08-03 08:53:10 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.freedesktop.org/software/libinput/libinput-${version}.tar.xz";
|
2021-09-21 14:35:22 +00:00
|
|
|
sha256 = "sha256-C9z1sXg7c3hUt68coi32e8Nqb+fJz6cfAekUn5IgRG0=";
|
2014-10-17 21:26:05 +00:00
|
|
|
};
|
|
|
|
|
2018-08-30 13:27:26 +00:00
|
|
|
outputs = [ "bin" "out" "dev" ];
|
2016-04-25 11:51:41 +00:00
|
|
|
|
2017-09-18 10:34:10 +00:00
|
|
|
mesonFlags = [
|
2015-06-01 19:29:47 +00:00
|
|
|
(mkFlag documentationSupport "documentation")
|
2017-09-18 10:34:10 +00:00
|
|
|
(mkFlag eventGUISupport "debug-gui")
|
2015-06-01 19:29:47 +00:00
|
|
|
(mkFlag testsSupport "tests")
|
2019-10-06 10:50:58 +00:00
|
|
|
"--sysconfdir=/etc"
|
2018-09-03 21:58:48 +00:00
|
|
|
"--libexecdir=${placeholder "bin"}/libexec"
|
2015-02-24 07:32:49 +00:00
|
|
|
];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config meson ninja ]
|
2021-08-05 14:49:10 +00:00
|
|
|
++ lib.optionals documentationSupport [ doxygen graphviz sphinx-build ];
|
2014-10-17 21:26:05 +00:00
|
|
|
|
2020-07-08 13:06:33 +00:00
|
|
|
buildInputs = [
|
|
|
|
libevdev
|
|
|
|
mtdev
|
|
|
|
libwacom
|
|
|
|
(python3.withPackages (pp: with pp; [
|
|
|
|
pp.libevdev # already in scope
|
|
|
|
pyudev
|
|
|
|
pyyaml
|
|
|
|
setuptools
|
|
|
|
]))
|
2021-08-05 14:49:10 +00:00
|
|
|
] ++ lib.optionals eventGUISupport [ cairo glib gtk3 ];
|
2020-02-25 01:03:40 +00:00
|
|
|
|
2020-07-08 13:06:33 +00:00
|
|
|
checkInputs = [
|
|
|
|
check
|
|
|
|
valgrind
|
|
|
|
];
|
2017-09-18 10:34:10 +00:00
|
|
|
|
2016-04-08 20:11:46 +00:00
|
|
|
propagatedBuildInputs = [ udev ];
|
|
|
|
|
2017-10-16 09:55:40 +00:00
|
|
|
patches = [ ./udev-absolute-path.patch ];
|
|
|
|
|
2018-12-01 01:08:04 +00:00
|
|
|
postPatch = ''
|
2021-08-05 14:49:10 +00:00
|
|
|
patchShebangs \
|
|
|
|
tools/helper-copy-and-exec-from-tmp.sh \
|
|
|
|
test/symbols-leak-test \
|
|
|
|
test/check-leftover-udev-rules.sh \
|
|
|
|
test/helper-copy-and-exec-from-tmp.sh
|
2021-08-03 08:53:10 +00:00
|
|
|
|
|
|
|
# Don't create an empty /etc directory.
|
|
|
|
sed -i "/install_subdir('libinput', install_dir : dir_etc)/d" meson.build
|
2018-12-01 01:08:04 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = testsSupport && stdenv.hostPlatform == stdenv.buildPlatform;
|
2017-11-04 18:27:40 +00:00
|
|
|
|
2021-11-15 11:46:20 +00:00
|
|
|
passthru.tests = {
|
|
|
|
libinput-module = nixosTests.libinput;
|
|
|
|
};
|
|
|
|
|
2021-08-05 14:49:10 +00:00
|
|
|
meta = with lib; {
|
2015-02-24 07:32:49 +00:00
|
|
|
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 21:26:05 +00:00
|
|
|
};
|
|
|
|
}
|