diff options
author | 宋文武 <iyzsong@gmail.com> | 2016-03-09 13:17:48 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2016-03-10 08:27:53 +0800 |
commit | ce6027bf43210d0b68bb26dbf110ca6c47aa8478 (patch) | |
tree | b185666e577f4e8863426a3dca9e7e8d19fcb7b0 /gnu/packages/gnome.scm | |
parent | 204d34ff961d6dabf18b255decc29712e03afef0 (diff) | |
download | guix-ce6027bf43210d0b68bb26dbf110ca6c47aa8478.tar guix-ce6027bf43210d0b68bb26dbf110ca6c47aa8478.tar.gz |
gnu: nautilus: Don't propagate gtk+.
* gnu/packages/gnome.scm (nautilus): Move gtk+ from propagated-inputs to inputs.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 0f37f90cbd..a26b609c19 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4650,13 +4650,17 @@ as SASL, TLS and VeNCrypt. Additionally it supports encoding extensions.") ("gobject-introspection" ,gobject-introspection) ("intltool" ,intltool) ("pkg-config" ,pkg-config))) - (propagated-inputs - `(("gtk+" ,gtk+))) ; required by libnautilus-extension.pc (inputs ;; TODO: add gvfs support. `(("dconf" ,dconf) ("exempi" ,exempi) ("gnome-desktop" ,gnome-desktop) + ;; XXX: gtk+ is required by libnautilus-extension.pc + ;; + ;; Don't propagate it to reduces "profile pollution" of the 'gnome' meta + ;; package. See: + ;; <http://lists.gnu.org/archive/html/guix-devel/2016-03/msg00283.html>. + ("gtk+" ,gtk+) ("libexif" ,libexif) ("libxml2" ,libxml2))) (synopsis "File manager for GNOME") |