diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-10-20 17:36:13 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-10-21 17:57:01 +0200 |
commit | c8d62d936e23ed6c3aee0d7cbfca16e66e0de9cb (patch) | |
tree | df35feb3bbde4e4e52c3fd2e4a6ad142845bb41b /gnu/packages/gnome.scm | |
parent | 920de4286adb1b4afe2ce48bac1bbef57f1c2cba (diff) | |
download | patches-c8d62d936e23ed6c3aee0d7cbfca16e66e0de9cb.tar patches-c8d62d936e23ed6c3aee0d7cbfca16e66e0de9cb.tar.gz |
gnu: libgxps: Propagate required inputs.
* gnu/packages/gnome.scm (libgxps)[inputs]: Move CAIRO, GLIB and LIBARCHIVE ...
[propagated-inputs]: ... here. New field.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 7b04716fa2..4251d5cf8f 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -412,13 +412,16 @@ access the common Google services, and has full asynchronous support.") `(("gobject-introspection" ,gobject-introspection) ("pkg-config" ,pkg-config))) (inputs - `(("cairo" ,cairo) - ("glib" ,glib) - ("libarchive" ,libarchive) + `(("gtk+" ,gtk+) ("libjpeg" ,libjpeg) ("lcms" ,lcms) ("libtiff" ,libtiff) ("nettle" ,nettle))) + (propagated-inputs + ;; In Requires of libgxps.pc. + `(("cairo" ,cairo) + ("glib" ,glib) + ("libarchive" ,libarchive))) (home-page "https://wiki.gnome.org/Projects/libgxps") (synopsis "GObject-based library for handling and rendering XPS documents") (description |