gnu: terminator: Remove trailing #T.

* gnu/packages/gnome.scm (terminator)[arguments]: Remove trailing #T from
build phases.
This commit is contained in:
Ricardo Wurmus 2021-11-18 19:33:54 +00:00
parent dddc90a363
commit d6a970dbf6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -11231,8 +11231,7 @@ (define-public terminator
;; python-dbus cannot be found but it's really there. See
;; https://github.com/SpotlightKid/jack-select/issues/2
(substitute* "setup.py"
(("'dbus-python',") ""))
#t))
(("'dbus-python',") ""))))
(add-after 'install 'wrap-program
(lambda* (#:key outputs #:allow-other-keys)
(let ((prog (string-append (assoc-ref outputs "out")
@ -11244,8 +11243,7 @@ (define-public terminator
"/site-packages")))
(wrap-program prog
`("PYTHONPATH" = (,(getenv "PYTHONPATH") ,pylib))
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))
#t)))
`("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))))))
(add-after 'wrap-program 'glib-or-gtk-wrap
(assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
(home-page "https://gnome-terminator.org/")