diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-05-01 20:57:01 +0200 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-05-01 20:57:01 +0200 |
commit | 90b4890c630637d1eb4711a7a57f610bbf9cfa57 (patch) | |
tree | a9f386bfb13742fdfd9f2d98f92d9e6f775c9c03 | |
parent | a5e827a3ea63cf9da89ddc2b186c61e3ad519de5 (diff) | |
download | guix-90b4890c630637d1eb4711a7a57f610bbf9cfa57.tar.gz guix-90b4890c630637d1eb4711a7a57f610bbf9cfa57.zip |
gnu: appstream-glib: Add gsettings-desktop-schemas for tests.
This fixes the fatal error "Settings schema 'org.gnome.system.proxy' is not
installed", which causes builds to fail.
* gnu/packages/glib.scm (appstream-glib)[native-inputs]: Add
gsettings-desktop-schemas.
-rw-r--r-- | gnu/packages/glib.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index c04bd334e9..4f04d40783 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -1055,6 +1055,7 @@ Some codes examples can be find at: (build-system meson-build-system) (native-inputs `(("gettext" ,gettext-minimal) + ("gsettings" ,gsettings-desktop-schemas) ; for ‘org.gnome.system.proxy’ ("glib:bin" ,glib "bin") ; for glib-compile-resources ("pkg-config" ,pkg-config))) (propagated-inputs |