diff options
| author | Carlos Durán Domínguez <wurt@wurt.eu> | 2026-01-17 20:08:28 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-02-07 17:00:12 +0100 |
| commit | cebff095e94f158719659e7f6e86eab4e8c6be80 (patch) | |
| tree | 424e3516f40f633f788dafcde2c28301754337d9 /gnu/packages | |
| parent | ce4ed658d4671e470b095a39a7d65174e894afc4 (diff) | |
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 <rutherther@ditigal.xyz>
Merges: #5707
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/video.scm | 55 |
1 files changed, 30 insertions, 25 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index a899f222e15..fb9be0a6b9a 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))) |
