diff options
author | Timothy Sample <samplet@ngyro.com> | 2021-11-17 23:59:43 -0500 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2021-11-18 10:10:16 -0500 |
commit | 3f99ed39dcc3ed0ea67243cfa4b251e34216f8f7 (patch) | |
tree | cffa9ff3c8c91b9481a810106f33ccaff1fa3b83 | |
parent | 0e2c8290d57408284aa180972aa3c463eff68c0e (diff) | |
download | guix-3f99ed39dcc3ed0ea67243cfa4b251e34216f8f7.tar guix-3f99ed39dcc3ed0ea67243cfa4b251e34216f8f7.tar.gz |
gnu: gnome-initial-setup: Fix build.
See <https://github.com/mesonbuild/meson/issues/9441>.
* gnu/packages/gnome.scm (gnome-initial-setup)
[arguments]: Use meson-0.59.
[inputs]: Replace webkitgtk with webkitgtk-with-libsoup2.
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index ea8591a272..51ad5d51bf 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1526,7 +1526,8 @@ extraction, and lookup for applications on the desktop.") "06q3p4f8g9zr7a4mw3qr556mi0dg9qzrj8n46ybdz93fxs26aaj1")))) (build-system meson-build-system) (arguments - '(#:configure-flags '(;; Enable camera support for user selfie. + `(#:meson ,meson-0.59 ;positional arguments error with meson 0.60 + #:configure-flags '(;; Enable camera support for user selfie. "-Dcheese=auto" "-Dsystemd=false") #:phases (modify-phases %standard-phases @@ -1568,7 +1569,7 @@ extraction, and lookup for applications on the desktop.") ("pwquality" ,libpwquality) ("rest" ,rest) ("upower" ,upower) - ("webkitgtk" ,webkitgtk) + ("webkitgtk" ,webkitgtk-with-libsoup2) ("libgnomekbd" ,libgnomekbd))) (synopsis "Initial setup wizard for GNOME desktop") (description "This package provides a set-up wizard when a |