diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-04-03 23:27:21 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-04-03 23:27:21 +0200 |
commit | 302393bc7c6e9c91df16d4f59806c728bce8e417 (patch) | |
tree | 8c32de46fbb0046b670d567b15369dbcf9d01a06 /gnu/packages | |
parent | 191e9b4e013fc23d1cc30863fec4a907d36e22ea (diff) |
gnu: vte: Propagate GnuTLS.
* gnu/packages/gnome.scm (vte): Move GNUTLS from 'inputs' to
'propagated-inputs'. Suggested by 宋文武 <iyzsong@gmail.com>.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index bf671d9e15..6e03a63c46 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -1416,10 +1416,9 @@ libraries written in C.") ("gobject-introspection" ,gobject-introspection) ("glib" ,glib "bin") ; for glib-genmarshal, etc. ("xmllint" ,libxml2))) - (inputs - `(("gnutls" ,gnutls))) (propagated-inputs - `(("gtk+" ,gtk+))) ; required by libvte-2.91.pc + `(("gtk+" ,gtk+) ;required by vte-2.91.pc + ("gnutls" ,gnutls))) ;ditto (arguments `(#:phases (alist-cons-before |