guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/08: gnu: Add wtype.


From: guix-commits
Subject: 04/08: gnu: Add wtype.
Date: Thu, 3 Mar 2022 18:00:21 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit bb41642077b67cd975d073e7904a90c67569ff56
Author: Tanguy Le Carrour <tanguy@bioneland.org>
AuthorDate: Mon Feb 21 19:33:03 2022 +0100

    gnu: Add wtype.
    
    * gnu/packages/freedesktop.scm (wtype): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/freedesktop.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 6215a46cb4..55bde8e705 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1210,6 +1210,29 @@ sent to a Wayland window, such as key presses.  It is 
analogous to the X11 tool
 XEv.")
     (license license:expat)))
 
+(define-public wtype
+  (package
+    (name "wtype")
+    (version "0.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/atx/wtype.git";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0bpix92vzip9vlhzihj3k8h9flrlna231x3y8ah7p4965l177yjd"))))
+    (build-system meson-build-system)
+    (native-inputs
+     (list pkg-config wayland libxkbcommon))
+    (synopsis "Xdotool type for Wayland")
+    (description "Wtype lets you simulate keyboard input and mouse activity,
+move and resize windows, etc.")
+    (home-page "https://github.com/atx/wtype";)
+    ;; MIT License
+    (license license:expat)))
+
 (define-public exempi
   (package
     (name "exempi")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]