diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2013-10-15 00:14:34 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2013-12-15 23:39:43 +0100 |
commit | af949e8ee7e134e30e559dcfa9cf59a3d28ea350 (patch) | |
tree | b7c26a97dfbcd6d663f6ca7f306301e59584db3c /gnu/packages/glib.scm | |
parent | 503c5f6d5d5b61097731158e70ff598fe42d6345 (diff) | |
download | patches-af949e8ee7e134e30e559dcfa9cf59a3d28ea350.tar patches-af949e8ee7e134e30e559dcfa9cf59a3d28ea350.tar.gz |
gnu: gtk+: enable introspection.
* gnu/packages/gtk.scm (atk, gdk-pixbuf, gtk+, pango): enable introspection
* guix/build/gnome.scm: New file.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 2ba1460444..6fc283467c 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -184,9 +184,12 @@ dynamic loading, and an object system.") ("cairo" ,cairo) ("flex" ,flex) ("glib" ,glib) - ("libffi" ,libffi) ("pkg-config" ,pkg-config) ("python-2" ,python-2))) + (propagated-inputs + `(;; In practice, GIR users will need libffi when using + ;; gobject-introspection. + ("libffi" ,libffi))) (arguments `(#:phases (alist-replace |