diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-11-20 11:59:38 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-11-20 12:02:04 +0800 |
commit | 9fff9e6484a1ebe5246e2811c5d74fbdab43313c (patch) | |
tree | 0dbe04a0c843d2d114339358619a2721ffa7ea8e | |
parent | 5a1ef07d3ec3e97385cf2885b91105ce2a90c324 (diff) | |
download | guix-9fff9e6484a1ebe5246e2811c5d74fbdab43313c.tar guix-9fff9e6484a1ebe5246e2811c5d74fbdab43313c.tar.gz |
gnu: gtk-engines: Don't propagate GTK+.
* gnu/packages/gtk.scm (gtk-engines): Move gtk+ to 'inputs'.
-rw-r--r-- | gnu/packages/gtk.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 6a9e7cf4d2..17bd9c9b00 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1289,7 +1289,8 @@ can also be used to document application code.") (native-inputs `(("pkg-config" ,pkg-config) ("intltool" ,intltool))) - (propagated-inputs + (inputs + ;; Don't propagate GTK+ to reduce "profile pollution". `(("gtk+" ,gtk+-2))) ; required by gtk-engines-2.pc (home-page "http://live.gnome.org/GnomeArt") (synopsis "Theming engines for GTK+ 2.x") |