From 1f921c9820936affcb143a18b5aff4f31bcb5d73 Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Thu, 24 Jul 2025 22:21:13 +0200 Subject: [PATCH] gnu: wbg: Update to 1.3.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/wm.scm (wbg): Update to 1.3.0. [inputs]: Add libjxl. [arguments]<#:configure-flags>: Add '-Djxl=enabled'. Fixes: #1552 Change-Id: I354da59a2dd3bee5c38b122976d5125edf124981 Signed-off-by: 宋文武 --- gnu/packages/wm.scm | 56 ++++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 29 deletions(-) diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index aa78d597833e7afea20e693f8434af52d743309b..52642760e0a32ca869af91c2a390100932656e95 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -4365,36 +4365,34 @@ It is inspired by dwm and xmonad.") (license license:expat)))) (define-public wbg - ;; This commit fixes a build error: https://codeberg.org/dnkl/wbg/issues/11 - (let ((commit "dd36cce8c47bb0e17a789cf2bd95a51e29b59e78") - (revision "0")) - (package - (name "wbg") - (version (git-version "1.2.0" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://codeberg.org/dnkl/wbg") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0nsb8w3myprhnwr59i6g4nwkc8fx67d40l70svjmwfmhpqy6zc18")))) - (build-system meson-build-system) - (arguments - (list - #:build-type "release" - #:configure-flags #~(list "-Dpng=enabled" - "-Djpeg=enabled" - "-Dwebp=enabled"))) - (native-inputs (list pkg-config tllist wayland-protocols)) - (inputs (list libjpeg-turbo libpng libwebp pixman wayland)) - (home-page "https://codeberg.org/dnkl/wbg") - (synopsis "Wallpaper application for Wayland compositors") - (description - "wbg is a super simple wallpaper application for Wayland compositors + (package + (name "wbg") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://codeberg.org/dnkl/wbg") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1dl60zdi8cndxfwf00yb8ahfs2vwgmg31g5zcybga0cysbfnaix8")))) + (build-system meson-build-system) + (arguments + (list + #:build-type "release" + #:configure-flags #~(list "-Dpng=enabled" + "-Djxl=enabled" + "-Djpeg=enabled" + "-Dwebp=enabled"))) + (native-inputs (list pkg-config tllist wayland-protocols)) + (inputs (list libjpeg-turbo libjxl libpng libwebp pixman wayland)) + (home-page "https://codeberg.org/dnkl/wbg") + (synopsis "Wallpaper application for Wayland compositors") + (description + "wbg is a super simple wallpaper application for Wayland compositors implementing the layer-shell protocol.") - (license license:expat)))) + (license license:expat))) (define-public wsbg (let ((commit "15b0d0f6910ea97b9bcc471695fac07270955dd2")