guix_mirror_bot pushed a commit to branch master
in repository guix.
commit cebff095e94f158719659e7f6e86eab4e8c6be80
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Sat Jan 17 20:08:28 2026 +0100
gnu: showmethekey: Improve style.
* gnu/packages/video.scm (showmethekey): Reindent.
[source]: Reindent.
[arguments]: Improve style.
[native-inputs]: Reindent.
[inputs]: Reindent
[description]: Reindent and fix markup.
Change-Id: I7aac4566c2f75c4240a6e07c978caa1c0776a4c8
Signed-off-by: Rutherther <[email protected]>
Merges: #5707
---
gnu/packages/video.scm | 55 +++++++++++++++++++++++++++-----------------------
1 file changed, 30 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index a899f222e1..fb9be0a6b9 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -7093,33 +7093,38 @@ included for convenience.")
(package
(name "showmethekey")
(version "1.19.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/AlynxZhou/showmethekey.git")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1hz941fb57f0j7j5x9q6gpj34ay18nm2dlidhqndnywb9a8mq14d"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/AlynxZhou/showmethekey")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1hz941fb57f0j7j5x9q6gpj34ay18nm2dlidhqndnywb9a8mq14d"))))
(build-system meson-build-system)
(arguments
- (list #:glib-or-gtk? #t
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'setenv
- (lambda _
- (substitute* "meson.build"
- ;; We do that ourselves later--so replace by a dummy
- ;; command.
- (("gtk4-update-icon-cache")
- "true")))))))
- (native-inputs
- (list (list glib "bin") gettext-minimal pkg-config))
- (inputs
- (list libevdev eudev libinput glib libadwaita json-glib))
+ (list
+ #:glib-or-gtk? #t
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'setenv
+ (lambda _
+ (substitute* "meson.build"
+ ;; We do that ourselves later--so replace by a dummy
+ ;; command.
+ (("gtk4-update-icon-cache")
+ "true")))))))
+ (native-inputs (list (list glib "bin") gettext-minimal pkg-config))
+ (inputs (list libevdev
+ eudev
+ libinput
+ glib
+ libadwaita
+ json-glib))
(synopsis "Show keypresses on screen")
- (description "This package shows the keys that the user presses on the
+ (description
+ "This package shows the keys that the user presses on the
screen.
Presumably, that's because you are presenting the screen to someone else
@@ -7128,7 +7133,7 @@ that should see the keys.
This package works in Xorg and Wayland since it directly reads the keys from
the evdev device via libinput.
-Users in group ``wheel'' can skip password authentication.")
+Users in group @code{wheel} can skip password authentication.")
(home-page "https://github.com/AlynxZhou/showmethekey")
(license license:asl2.0)))