mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
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:
parent
6140e8c45d
commit
f4f6d6582b
1 changed files with 11 additions and 14 deletions
|
@ -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//")
|
||||
|
|
Loading…
Reference in a new issue