gnu: wl-mirror: Improve style.

* gnu/packages/wm.scm (wl-mirror): Reindent.
[source]: Reindent.
[arguments]: Reindent.

Change-Id: Ia8a4352756403332695e85a9e966d1c401bd4945
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Merges: #5732
This commit is contained in:
Carlos Durán Domínguez 2026-01-18 23:23:33 +01:00 committed by Ludovic Courtès
parent 9d0288d869
commit 1ad5ee5d1a
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -2504,27 +2504,27 @@ modules for building a Wayland compositor.")
(package
(name "wl-mirror")
(version "0.18.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Ferdi265/wl-mirror")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1acx42p74p1bz569l3whk1mw0s3ki229jz6072n0hc6yy5j84gy6"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Ferdi265/wl-mirror")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1acx42p74p1bz569l3whk1mw0s3ki229jz6072n0hc6yy5j84gy6"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ;No tests.
#:configure-flags
#~(list "-DINSTALL_DOCUMENTATION=ON"
"-DINSTALL_EXAMPLE_SCRIPTS=ON"
(string-append "-DWL_PROTOCOL_DIR="
#$(this-package-input "wayland-protocols")
"/share/wayland-protocols")
(string-append "-DWLR_PROTOCOL_DIR="
#$(this-package-input "wlr-protocols")
"/share/wlr-protocols"))))
(list
#:tests? #f ;No tests.
#:configure-flags
#~(list "-DINSTALL_DOCUMENTATION=ON" "-DINSTALL_EXAMPLE_SCRIPTS=ON"
(string-append "-DWL_PROTOCOL_DIR="
#$(this-package-input "wayland-protocols")
"/share/wayland-protocols")
(string-append "-DWLR_PROTOCOL_DIR="
#$(this-package-input "wlr-protocols")
"/share/wlr-protocols"))))
(inputs (list egl-wayland mesa wayland wayland-protocols wlr-protocols))
(native-inputs (list pkg-config scdoc))
(home-page "https://github.com/Ferdi265/wl-mirror")