{ lib, stdenv , fetchFromGitHub , nix-update-script , substituteAll , pantheon , meson , ninja , pkg-config , vala , libgee , libxml2 , granite , gtk3 , switchboard , gnome-settings-daemon , glib , gala # needed for gestures support , touchegg }: stdenv.mkDerivation rec { pname = "switchboard-plug-mouse-touchpad"; version = "6.1.0"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; sha256 = "0nqgbpk1knvbj5xa078i0ka6lzqmaaa873gwj3mhjr5q2gzkw7y5"; }; passthru = { updateScript = nix-update-script { attrPath = "pantheon.${pname}"; }; }; nativeBuildInputs = [ meson ninja pkg-config vala ]; buildInputs = [ gala glib granite gtk3 libgee libxml2 gnome-settings-daemon switchboard touchegg ]; patches = [ (substituteAll { src = ./fix-paths.patch; touchegg = touchegg; }) ]; meta = with lib; { description = "Switchboard Mouse & Touchpad Plug"; homepage = "https://github.com/elementary/switchboard-plug-mouse-touchpad"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = teams.pantheon.members; }; }