diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-07-25 12:02:42 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-07-26 09:52:45 +0800 |
commit | 65cb2d61e69c2ce20eee9790a5c355081785c1c0 (patch) | |
tree | 95096f0939983050556fb1a8a4176cc61fcef90c | |
parent | ea2262914a76fa5c617ae92401a189287f9fcc9c (diff) | |
download | guix-65cb2d61e69c2ce20eee9790a5c355081785c1c0.tar.gz |
gnu: colord: Propagate inputs.
* gnu/packages/gnome.scm (colord): Propagate inputs glib, eudev and lcms.
-rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 11afb61068..0feb5b480e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2181,11 +2181,14 @@ keyboard shortcuts.") ("gobject-introspection" ,gobject-introspection) ("libtool" ,libtool) ("intltool" ,intltool))) + (propagated-inputs + ;; colord.pc refers to all these. + `(("glib" ,glib) + ("udev" ,eudev) + ("lcms" ,lcms))) (inputs - `(("eudev" ,eudev) - ("dbus-glib" ,dbus-glib) + `(("dbus-glib" ,dbus-glib) ("libusb" ,libusb) - ("lcms" ,lcms) ("sqlite" ,sqlite) ("polkit" ,polkit) ("sane-backends" ,sane-backends))) |