wtype: init at 2020-09-14

gstqt5
Justin Lovinger 2020-09-27 18:36:34 -04:00
parent 1d85b14651
commit d93e6842d4
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, libxkbcommon
, wayland
}:
stdenv.mkDerivation {
pname = "wtype";
version = "2020-09-14";
src = fetchFromGitHub {
owner = "atx";
repo = "wtype";
rev = "74071228dea4047157ae82960a2541ecc431e4a1";
sha256 = "1ncspxpnbwv1vkfmxs58q7aykjb6skaa1pg5sw5h798pss5j80rd";
};
nativeBuildInputs = [ meson ninja pkg-config wayland ];
buildInputs = [ libxkbcommon wayland ];
meta = with lib; {
description = "xdotool type for wayland";
homepage = "https://github.com/atx/wtype";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ justinlovinger ];
};
}

View File

@ -3406,6 +3406,8 @@ in
wob = callPackage ../tools/misc/wob { };
wtype = callPackage ../tools/wayland/wtype { };
wrangler = callPackage ../development/tools/wrangler { };
xkcdpass = with pythonPackages; toPythonApplication xkcdpass;