3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/inputmethods/remote-touchpad/default.nix

34 lines
751 B
Nix
Raw Normal View History

2021-04-22 01:32:03 +01:00
{ buildGoModule
, fetchFromGitHub
, lib
, libX11
, libXi
, libXt
, libXtst
}:
buildGoModule rec {
pname = "remote-touchpad";
2022-01-08 00:55:37 +00:00
version = "1.0.5";
2021-04-22 01:32:03 +01:00
src = fetchFromGitHub {
owner = "unrud";
repo = pname;
rev = "v${version}";
2022-01-08 00:55:37 +00:00
sha256 = "sha256-2oHjx5RpuZmWcv954ZOrmHhOkQBfrDpEFqgiBFQfAuo=";
2021-04-22 01:32:03 +01:00
};
buildInputs = [ libX11 libXi libXt libXtst ];
2021-08-05 22:52:33 +01:00
tags = [ "portal,x11" ];
2021-04-22 01:32:03 +01:00
2022-01-08 00:55:37 +00:00
vendorSha256 = "sha256-8w3muVJwDmFKY6AFKv/x6vS6jIyR7M/wlxzAvl5ROdE=";
2021-04-22 01:32:03 +01:00
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;
};
}