diff options
author | Raghav Gururajan <rg@raghavgururajan.name> | 2021-01-02 23:51:51 -0500 |
---|---|---|
committer | Leo Prikler <leo.prikler@student.tugraz.at> | 2021-01-31 09:22:48 +0100 |
commit | eb8c32f8805cb0605f03f2a3d0afdb2e4ac05405 (patch) | |
tree | 04ebf88d300c35f6c37f40c689d3f11b02e5a88c /gnu/packages/freedesktop.scm | |
parent | 7152d7568116bb19da986465db93a9b811bee577 (diff) | |
download | guix-eb8c32f8805cb0605f03f2a3d0afdb2e4ac05405.tar guix-eb8c32f8805cb0605f03f2a3d0afdb2e4ac05405.tar.gz |
gnu: libappindicator: Propagate some inputs as per .pc file.
* gnu/packages/freedesktop.scm (libappindicator) [inputs]: Move gtk+
and libdbusmenu to ...
[propagated-inputs]: ... here.
Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
Diffstat (limited to 'gnu/packages/freedesktop.scm')
-rw-r--r-- | gnu/packages/freedesktop.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index e175a95ef1..09db6de783 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -2021,14 +2021,15 @@ useful with system integration.") ("xvfb" ,xorg-server-for-tests))) (inputs `(("dbus-glib" ,dbus-glib) - ("gtk+" ,gtk+) - ("libdbusmenu" ,libdbusmenu) ("libindicator" ,libindicator) ("python@2" ,python-2) ("python2-pygtk" ,python2-pygtk) ("python2-pygobject-2" ,python2-pygobject-2) ;; ("mono" ,mono) ; requires non-packaged gapi ("vala" ,vala))) + (propagated-inputs + `(("gtk+" ,gtk+) + ("libdbusmenu" ,libdbusmenu))) (arguments ;; FIXME: do not hardcode gtk version `(#:configure-flags '("--with-gtk=3") |