mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
gnu: glibmm: Remove trailing #t.
* gnu/packages/glib.scm (glibmm): Remove trailing #t.
This commit is contained in:
parent
3d91c07875
commit
946c5e05a4
1 changed files with 3 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue