From 1ad5ee5d1a627b8d90772bac5676e67f27d6d3a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Dur=C3=A1n=20Dom=C3=ADnguez?= Date: Sun, 18 Jan 2026 23:23:33 +0100 Subject: [PATCH] gnu: wl-mirror: Improve style. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/wm.scm (wl-mirror): Reindent. [source]: Reindent. [arguments]: Reindent. Change-Id: Ia8a4352756403332695e85a9e966d1c401bd4945 Signed-off-by: Ludovic Courtès Merges: #5732 --- gnu/packages/wm.scm | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index 5286afa740c..40d68bfcb8a 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -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")