mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: wbg: Update to 1.3.0.
* 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: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
fac50e22fb
commit
1f921c9820
1 changed files with 27 additions and 29 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue