mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
34 lines
757 B
Nix
34 lines
757 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
, libXi
|
|
, libXrandr
|
|
, libXt
|
|
, libXtst
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "remote-touchpad";
|
|
version = "1.2.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unrud";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Yakx4eHcw3p8UAg3zAiWVrZyOFChhC5wWa0uJIKJn5g=";
|
|
};
|
|
|
|
buildInputs = [ libXi libXrandr libXt libXtst ];
|
|
tags = [ "portal,x11" ];
|
|
|
|
vendorSha256 = "sha256-xlGAxKr2fav8WgAO+zW6ZTL7QgkdyUqRdQIOErDjRTg=";
|
|
|
|
meta = with lib; {
|
|
description = "Control mouse and keyboard from the webbrowser of a smartphone.";
|
|
homepage = "https://github.com/unrud/remote-touchpad";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ schnusch ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|