wtype: init at 2020-09-14
This commit is contained in:
parent
1d85b14651
commit
d93e6842d4
2 changed files with 36 additions and 0 deletions
34
pkgs/tools/wayland/wtype/default.nix
Normal file
34
pkgs/tools/wayland/wtype/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue