diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-07-30 21:50:57 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-01 13:32:11 +0200 |
commit | d7a503fcc676a868eac449b2cb49c4459a45144c (patch) | |
tree | 6ee8832451fdfce240f2a5d83c66470091dc1816 /gnu | |
parent | 9ec5496525c6c20a174b487a69ecd555af56b924 (diff) | |
download | guix-d7a503fcc676a868eac449b2cb49c4459a45144c.tar guix-d7a503fcc676a868eac449b2cb49c4459a45144c.tar.gz |
gnu: upower: Add explicit dependency on Glib.
* gnu/packages/gnome.scm (upower)[propagated-inputs]: New field.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 3d3d77bf26..947ae6ae3e 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2962,6 +2962,9 @@ faster results and to avoid unnecessary server load.") `(("dbus-glib" ,dbus-glib) ("libgudev" ,libgudev) ("libusb" ,libusb))) + (propagated-inputs + ;; In Requires of upower-glib.pc. + `(("glib" ,glib))) (home-page "https://upower.freedesktop.org/") (synopsis "System daemon for managing power devices") (description |