Chris Marusich <cmmarus...@gmail.com> skribis: > Christopher Baines <m...@cbaines.net> writes: > >> * gnu/packages/gnome.scm (gnome-tweak-tool): Switch from the gnu build >> system to the glib-or-gtk build system, to fix missing gobject >> introspection namespaces. >> --- >> gnu/packages/gnome.scm | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm >> index 91da7783a..5f13cdd0e 100644 >> --- a/gnu/packages/gnome.scm >> +++ b/gnu/packages/gnome.scm >> @@ -5288,12 +5288,12 @@ existing databases over the internet.") >> (sha256 >> (base32 >> "1fj6wjvnjygzm9br3sw9gya6d18yly1rm69yaiar9spfbkvv4wai")))) >> - (build-system gnu-build-system) >> + (build-system glib-or-gtk-build-system) >> (arguments >> `(#:configure-flags '("--localstatedir=/tmp" >> "--sysconfdir=/tmp") >> #:imported-modules ((guix build python-build-system) >> - ,@%gnu-build-system-modules) >> + ,@%glib-or-gtk-build-system-modules) >> #:phases (modify-phases %standard-phases >> (add-after 'install 'wrap >> (@@ (guix build python-build-system) wrap))))) > > When I build this with --rounds=2, I get the following error: > > output ‘/gnu/store/2469sq8ny3f7dffx3v30y27d882hy5k4-module-import-compiled’ > of ‘/gnu/store/8frm3y92vlkxjb2x0ljcrzx4qy357wv9-module-import-compiled.drv’ > differs from previous round
This is a “known issue”, but the good news is that it’s fixed upstream: https://bugs.gnu.org/20272 Ludo’.