diff options
author | Marius Bakke <marius@gnu.org> | 2022-06-28 00:25:27 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-07-06 00:35:16 +0200 |
commit | db216c2078aeac068a872974d084f0fa9c1f2bdb (patch) | |
tree | 33a466ccf385b800db12f66b10f577e87a2c47d2 /gnu | |
parent | dc5fc7d23f0a4b62f8542bb24abb7ac1b589168d (diff) | |
download | guix-db216c2078aeac068a872974d084f0fa9c1f2bdb.tar guix-db216c2078aeac068a872974d084f0fa9c1f2bdb.tar.gz |
gnu: pango: Remove input labels.
* gnu/packages/gtk.scm (pango)[propagated-inputs, native-inputs]: Remove labels.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index d8ddeff07f..a5bf40fda0 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -370,26 +370,26 @@ applications.") (("\\[ 'test-harfbuzz'.*") ""))))))) (propagated-inputs ;; These are all in Requires or Requires.private of the '.pc' files. - `(("cairo" ,cairo) - ("fontconfig" ,fontconfig) - ("freetype" ,freetype) - ("fribidi" ,fribidi) - ("glib" ,glib) - ("harfbuzz" ,harfbuzz) - ("libthai" ,libthai) - ;; Some packages, such as Openbox, expect Pango to be built with the - ;; optional libxft support. - ("libxft" ,libxft) - ("libxrender" ,libxrender))) + (list cairo + fontconfig + freetype + fribidi + glib + harfbuzz + libthai + ;; Some packages, such as Openbox, expect Pango to be built with the + ;; optional libxft support. + libxft + libxrender)) (inputs (list bash-minimal zlib)) (native-inputs - `(("glib" ,glib "bin") ; glib-mkenums, etc. - ("gobject-introspection" ,gobject-introspection) ; g-ir-compiler, etc. - ("help2man" ,help2man) - ("perl" ,perl) - ("pkg-config" ,pkg-config) - ("python" ,python-wrapper))) + (list `(,glib "bin") ;glib-mkenums, etc. + gobject-introspection ;g-ir-compiler, etc. + help2man + perl + pkg-config + python-wrapper)) (synopsis "Text and font handling library") (description "Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text |