gnu: glibmm: Remove trailing #t.

* gnu/packages/glib.scm (glibmm): Remove trailing #t.
This commit is contained in:
Maxim Cournoyer 2021-12-17 23:26:35 -05:00
parent 3d91c07875
commit 946c5e05a4
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -760,8 +760,7 @@ (define glibmm
(outputs '("out" "doc"))
(arguments
`(#:configure-flags
(list
"-Dbuild-documentation=true")
(list "-Dbuild-documentation=true")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-failing-tests
@ -772,8 +771,7 @@ (define glibmm
(("[ \t]*.*giomm_simple.*$") "")
;; This test does a DNS lookup, and then expects to be able
;; to open a TLS session; just skip it.
(("[ \t]*.*giomm_tls_client.*$") ""))
#t))
(("[ \t]*.*giomm_tls_client.*$") ""))))
(add-after 'install 'move-doc
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
@ -781,8 +779,7 @@ (define glibmm
(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)