diff options
| author | schnusch <schnusch@users.noreply.github.com> | 2022-12-30 15:15:52 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-01-02 12:58:08 +0000 |
| commit | 8782b4607f3627bb2b7a57708358c3d9f6a56a72 (patch) | |
| tree | e61bd4f73a1f27b8b4e10ed675df9e4f3e6612b0 | |
| parent | nixos/test-driver: add optional address arg to wait_for_{open,closed}_port (diff) | |
| download | nixpkgs-origin/backport-208368-to-release-22.11.tar.gz | |
remote-touchpad: 1.2.2 -> 1.2.3origin/backport-208368-to-release-22.11
(cherry picked from commit 6fd317a671e576ebc7ca45b83a64d8d718c8b3b1)
| -rw-r--r-- | pkgs/tools/inputmethods/remote-touchpad/default.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/inputmethods/remote-touchpad/default.nix b/pkgs/tools/inputmethods/remote-touchpad/default.nix index 35e334a2fe7f..a086892caf44 100644 --- a/pkgs/tools/inputmethods/remote-touchpad/default.nix +++ b/pkgs/tools/inputmethods/remote-touchpad/default.nix @@ -1,27 +1,27 @@ { buildGoModule , fetchFromGitHub , lib -, libX11 , libXi +, libXrandr , libXt , libXtst }: buildGoModule rec { pname = "remote-touchpad"; - version = "1.2.2"; + version = "1.2.3"; src = fetchFromGitHub { owner = "unrud"; repo = pname; rev = "v${version}"; - sha256 = "sha256-KkrBWrZBvALM0TdF8AlW5Zf+r8EO9I76Otkq4cA+ikg="; + sha256 = "sha256-Yakx4eHcw3p8UAg3zAiWVrZyOFChhC5wWa0uJIKJn5g="; }; - buildInputs = [ libX11 libXi libXt libXtst ]; + buildInputs = [ libXi libXrandr libXt libXtst ]; tags = [ "portal,x11" ]; - vendorSha256 = "sha256-lEl0SOqbw6PARgO1qIN20p13BbexfCeJug1ZkuahV+k="; + vendorSha256 = "sha256-xlGAxKr2fav8WgAO+zW6ZTL7QgkdyUqRdQIOErDjRTg="; meta = with lib; { description = "Control mouse and keyboard from the webbrowser of a smartphone."; |
