diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-01-04 14:06:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-01-04 14:06:51 +0100 |
commit | 12c815e985698c3da2ceb3ad2c10633baeac6c96 (patch) | |
tree | 0290a5a21c6f06db224764d26873d0d9d747eeb5 /gnu | |
parent | 201793fd07f602270b2375491a2f5d1d85d4f2b1 (diff) | |
download | guix-12c815e985698c3da2ceb3ad2c10633baeac6c96.tar.gz |
gnu: sugar-toolkit-gtk3: Propagate some inputs.
* gnu/packages/sugar.scm (sugar-toolkit-gtk3)[inputs]: Move gdk-pixbuf, gobject-introspection, and librsvg-for-system from here... [native-inputs]: ...and move gtk+ from here... [propagated-inputs]: ...to here.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/sugar.scm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/packages/sugar.scm b/gnu/packages/sugar.scm index 35514263ff..3b40dddacd 100644 --- a/gnu/packages/sugar.scm +++ b/gnu/packages/sugar.scm @@ -75,15 +75,21 @@ `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))))) (inputs (list alsa-lib - gdk-pixbuf - gobject-introspection libice - (librsvg-for-system) libsm libx11 libxfixes libxi - python + python)) + (propagated-inputs + ;; The gi typelib files are needed by users of this library. + (list gdk-pixbuf + gobject-introspection + gtk+ + (librsvg-for-system) + + ;; This package is used as a Python library by users, so these must + ;; be propagated. python-dbus python-decorator python-pygobject @@ -93,7 +99,6 @@ gettext-minimal glib (list glib "bin") - gtk+ intltool libtool pkg-config)) |