guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 1ad5ee5d1a627b8d90772bac5676e67f27d6d3a1
Author: Carlos Durán Domínguez <[email protected]>
AuthorDate: Sun Jan 18 23:23:33 2026 +0100
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 <[email protected]>
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 5286afa740..40d68bfcb8 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")