gnu: pangomm: Remove input labels.

* gnu/packages/gtk.scm (pangomm)[native-inputs]: Remove labels.
[arguments]: While at it, remove trailing #t.
This commit is contained in:
Marius Bakke 2022-07-16 17:38:39 +02:00
parent 6140e8c45d
commit f4f6d6582b
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -1610,10 +1610,8 @@ (define-public pangomm
(build-system meson-build-system)
(outputs '("out" "doc"))
(arguments
`(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
#:configure-flags
(list
"-Dbuild-documentation=true")
'(#:glib-or-gtk? #t
#:configure-flags '("-Dbuild-documentation=true")
#:phases
(modify-phases %standard-phases
(add-after 'install 'move-doc
@ -1623,17 +1621,16 @@ (define-public pangomm
(mkdir-p (string-append doc "/share"))
(rename-file
(string-append out "/share/doc")
(string-append doc "/share/doc"))
#t))))))
(string-append doc "/share/doc"))))))))
(native-inputs
`(("dot" ,graphviz)
("doxygen" ,doxygen)
("m4" ,m4)
("mm-common" ,mm-common)
("perl" ,perl)
("pkg-config" ,pkg-config)
("python" ,python)
("xsltproc" ,libxslt)))
(list doxygen
graphviz ;for 'dot'
libxslt ;for 'xsltproc'
m4
mm-common
perl
pkg-config
python))
(propagated-inputs
(list cairo cairomm glibmm pango))
(home-page "https://pango.gnome.org//")