me
/
guix
Archived
1
0
Fork 0

gnu: gnome-boxes: Fix build.

Due to webkitgtk being built with libsoup@3, the pkg-config file it produces
corresponds to 'webkit2gtk-4.1' rather than 'webkit2gtk-4.0', which is the one
gnome-boxes need.

* gnu/packages/gnome.scm (gnome-boxes)[meson]: New argument.
[native-inputs]{libsoup}: Use libsoup-minimal-2.
{webkitgtk}: Use webkitgtk-with-libsoup2.
master
Maxim Cournoyer 2021-11-11 23:04:06 -05:00
parent d36cba20ef
commit 9c6a1d6933
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 7 additions and 6 deletions

View File

@ -11621,15 +11621,16 @@ integrate seamlessly with the GNOME desktop.")
(base32 "1wzhm8n485cqhbai4qshgrwl05ix881g8gjshilrj6vg8p1li79h"))))
(build-system meson-build-system)
(arguments
'(#:glib-or-gtk? #t
`(#:meson ,meson-0.59 ;positional arguments error with meson 0.60
#:glib-or-gtk? #t
#:configure-flags (list "-Drdp=false"
(string-append "-Dc_link_args=-Wl,-rpath="
(assoc-ref %outputs "out")
"/lib/gnome-boxes"))))
(native-inputs
`(("glib:bin" ,glib "bin") ; for glib-compile-resources
("gtk+:bin" ,gtk+ "bin") ; for gtk-update-icon-cache
("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
`(("glib:bin" ,glib "bin") ;for glib-compile-resources
("gtk+:bin" ,gtk+ "bin") ;for gtk-update-icon-cache
("desktop-file-utils" ,desktop-file-utils) ;for update-desktop-database
("itstool" ,itstool)
("intltool" ,intltool)
("vala" ,vala)
@ -11645,7 +11646,7 @@ integrate seamlessly with the GNOME desktop.")
("libhandy" ,libhandy)
("libosinfo" ,libosinfo)
("libsecret" ,libsecret)
("libsoup" ,libsoup)
("libsoup" ,libsoup-minimal-2)
("libusb" ,libusb)
("libvirt" ,libvirt)
("libvirt-glib" ,libvirt-glib)
@ -11653,7 +11654,7 @@ integrate seamlessly with the GNOME desktop.")
("spice-gtk" ,spice-gtk)
("sparql-query" ,sparql-query)
("vte" ,vte)
("webkitgtk" ,webkitgtk)
("webkitgtk" ,webkitgtk-with-libsoup2) ;for webkit2gtk-4.0
("tracker" ,tracker)
("libgudev" ,libgudev)))
(home-page "https://wiki.gnome.org/Apps/Boxes")